
jQuery().ready(function(){
    $(window).load(function () {
	    $('#loading_gallery').fadeOut('fast');
    });
    // css
	    var w = $(document).width();
	    var h = $(document).height();
	    $('#loading_gallery').css({
		    width: w,
		    height: h
		});
	    
	    
    	// simple accordion
	    jQuery('#sub_menu').accordion({
	        active: true,
			active: '.selected',
			header: '.head',
			
			alwaysOpen: false,
//			animated: 'bounceslide',
			animated: 'easeslide', 
//          animated: false, 
			autoheight: false
		    
		    // loading
	   }); 
	    
	    
	    })
	    //End
		    
      
