jQuery(document).ready(function() {
	jQuery('#slider1').s3Slider({
		timeOut: 8000 
	});
});


jQuery(document).ready(function() {
	jQuery("#brandpanels ul li").hover(function() { //On hover...
		var thumbOver = jQuery(this).find("img").attr("alt"); 
		jQuery(this).find("img.hover").css({'margin-top' : '-201px'});
		/*jQuery(this).find(".overlay").stop().fadeTo('1400', 0 , function() {
			jQuery(this).hide() 
		});*/
	} , function() { 
		/*jQuery(this).find(".overlay").stop().fadeTo('1800', 1 ).show();*/
		
		jQuery(this).find("img.hover").css({'margin-top' : '0px'});
	});	
});