//ReWritten - CB 2010
$(document).ready(function(){			
	$('.ParentLeft').click(
		function(){
			return true;
			var MyID=$(this).attr('id');
			MyID=MyID.substring(4,9);
			if ($(this).hasClass('On')){						
				$('#Sub_'+MyID).slideUp(500);
				$(this).removeClass('On');
			}
			else{							
				$('#Sub_'+MyID).slideDown(500);
				$(this).addClass('On');
			}
		}
	)
	
	$('.BrandList img').hover(
		function(){
			$(this).animate({
				width: '206px',
				height: '140px',
				left: '-=8px',
				top: '-=7px'
			}, 100)
		},
		function(){
			$(this).animate({
				width: '187px',
				height: '127px',
				left: '+=8px',
				top: '+=7px'
			}, 100)
		}
	)
	
})