
    //<![CDATA[
	    $(document).ready(function() {
	                
	    	$('#allicons, #reflections').css('opacity',0);
	    	$('.home_cat .hover_content').hide();
	    	
	    	$('#allicons').animate({opacity: 1, top: '20px'}, 2500, function() {
	      	$('#reflections').animate({opacity: 1}, 1000);
	      });

		    $(".hover").hover( function () {
					$(this).siblings('.hover_content').fadeIn();
        }, function () {
        });
        
		    $(".hover_content").hover( function () {
        }, function () {
					$(this).fadeOut();
        });
                        
      });      
            
      //]]>
