jQuery(function() {




jQuery('.post-thumb').hover(function(){

        jQuery(this).stop().animate({ opacity: 0.8 }, 250);

}, function(){

        jQuery(this).stop().animate({ opacity: 1 }, 350);

    });

    jQuery('.post-thumb-category').hover(function(){

        jQuery(this).stop().animate({ opacity: 0.8 }, 250);

}, function(){

        jQuery(this).stop().animate({ opacity: 1 }, 350);

    });

    


    jQuery('.active').stop().css({ opacity: .1 });

    jQuery('#topbar-social li').stop().css({ opacity: .5 });

    jQuery('#topbar-social li').hover(function(){

    jQuery(this).stop().animate({ opacity: 1 }, 100);

    }, function(){

        jQuery(this).stop().animate({ opacity: .5 }, 150);

    });

});

function dropDown() {

	 jQuery("#topbar-nav li, #topbar-nav li ul li, #main-nav li, #main-nav ul li").hover(function() {

		jQuery(this).find('ul:first').stop(true, true).slideDown(300) //Slides down when hover the UL

	}, function() {

		jQuery(this).find('ul:first').stop(true, true).slideUp(200); //Slides up on mouseleave

	});

}
