$(document).ready(function(){

		 $('#sub').hide(); 
		 $('#main_menu>ul>li').hover(
		 function () {
				if( $(this).find('#sub').length > 0 ){
				//	alert('sdfds');
					$(this).find('#sub').show(); 
				}
		 },function (){		
				$(this).find('#sub').hide();
		}); 
		//$('#left_menu>ul>li>ul').hide();
		$("#left_menu>ul>li>a").click(function () {
		
			return true; //
			
			if( $(this).parent().find('ul').length > 0 ){
				var ul = $(this).parent().find('ul');
				if( ul.is(":visible") ){
					// $(this).removeClass('active');
					 ul.slideUp();
					//alert('true');
				}else{
					// $(this).addClass('active');
					 ul.slideDown();
				// alert('false');
				}
				return false;
			}else{
				//alert('true');
				return true;	
			}
			//$(this).removeClass('active');
    	}); 
	
    //Find the active main menu and then show the sub elements
    $('.active_sub>ul').css({display: 'block'});    
  /*  	 
	$(function() {
          $('#carusel').carousel({
                itemsPerPage: 3,
                itemsPerTransition: 1,
                orientation: 'horizontal',
                pagination: false,
                autoScroll: true,
                pause: 6000,
                speed: 2000,
                nextPrevActions: function() {
                    this.appendTo('#bottom');
                }
            });

		});
	 */
});




