jQuery(document).ready(function(){         
	$('#tabs').tabs();
	$('#slideshow .slides').cycle({
		fx: 'fade',
		pager: '#dots',
		timeout: 8000,
		delay: -2000
	});
	$('#testimonial-top').cycle({
		fx: 'fade',
		timeout: 8000,
		delay: -5000
	});
	
	$('#blog-sidebar .blog-list li label').toggle(function(){
		$(this).addClass('ui-state-active');
		}, function () {
		$(this).removeClass('ui-state-active');
	});

        jQuery('#menu-main-nav > li').hover(function() {
        if (jQuery(this).children(':last').hasClass('sub-menu')){
            jQuery(this).children(':last').show();
        }
    },
    function() {
        if (jQuery(this).children(':last').hasClass('sub-menu')){
            jQuery(this).children(':last').hide();
        }
    });

    jQuery('.first-carousel ').jcarousel({
        scroll: 5
   });
    jQuery('.second-carousel ').jcarousel({
       scroll: 5
    });


	
//        console.log('hello');


});
