// AIRES - scripting layer v0.3b
// Šlivercake 2011
	
	// ready for document now.
	jQuery(document).ready(function() {
            
            jQuery('#loopsHolder ul li').hover(function() {
			$(this).children('img').fadeOut('fast');
                        }, function(){
			$(this).children('img').fadeIn('fast');
		});
	    
	    jQuery('#loopsHolder ul li.brands').hover(function() {
			$(this).children('h2').fadeIn('slow');
                        }, function(){
			$(this).children('h2').fadeOut('fast');
		});

	// END OF FILE		
	});
	
