﻿    jQuery(document).ready(function () {
        jQuery('#mycarousel').jcarousel({
        // Configuration goes here. Documentation here: http://sorgalla.com/projects/jcarousel/
    });
});
 $(document).ready(function () {
        $(".main-menu ul").hover(
					function () { $(this).parent().children('a:first').addClass('dropdown'); },
					function () { $(this).parent().children('a:first').removeClass('dropdown'); }
				);
        
    });
