$(document).ready(function() {
        /* for top navigation */
        $(" #topnav ul ").css({display: "none"}); // Opera Fix
        $(" #topnav li").hover(function(){
        $(this).find('ul:first').css({visibility: "visible",display: "none"}).slideDown(400);
        },function(){
        $(this).find('ul:first').css({visibility: "hidden"});
        });
        
        $("#slider").easySlider({
			auto: true,
			speed: 1000,
			pause: 5000,
			continuous: true 
		});
		
		$('#rotate').cycle({
            fx:          'fade',
            speed:       3000,
            timeout:     6000
        });	
        
        $('#badges').cycle({
            fx:          'fade',
            speed:       3000,
            timeout:     3000
        });
        
        $('#accordion').accordion({
    		header: 'H4',
    		collapsible: 'true'
    	});
    	
		$("article a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'pp_default',slideshow:7000, autoplay_slideshow: false, social_tools: false});
	
});
