(function($){

$(document).ready(function($) {
        
	// featured window effect
	$(".feature_box").hover(function(){
		$(this).find(".feature_inset").stop().animate({
			top:0
		}, 150);
		}, function(){
		$(this).find(".feature_inset").stop().animate({
			top:150
		}, 150);
	});
        
        $(function(){ $('#upcoming').jScrollPane({showArrows: true, scrollbarWidth: 20, scrollbarMargin: 10});});
        $(function(){ $('#featured_downloads').jScrollPane({showArrows: true, scrollbarWidth: 20, scrollbarMargin: 10});});

        $(function(){ $('#home_events').jScrollPane({showArrows: true, scrollbarWidth: 20, scrollbarMargin: 10});});
        
        $(document).pngFix(); 
});

})(jQuery);