 $(document).ready( function(){	
	$('.fadein img:gt(0)').hide();
	setInterval(function(){$('.fadein :first-child').fadeOut(1500).next('img').fadeIn(1500).end().appendTo('.fadein');}, 5000);
});
 jQuery(document).ready(function(){
// Fade
    jQuery(".banner img").hover(function(){
        jQuery(this).fadeTo("slow", 0.6); // This sets 100% on hover
    },function(){
        jQuery(this).fadeTo("slow", 1.0); // This should set the opacity back to 30% on mouseout
    });
});



