// Dropdown
var delay_dropdown_show=300
var delay_dropdown_hide=150

$(document).ready(function() {
	
	$('.nav li').hover(
		function() { $(this).addClass("dropdown"); $('ul', this).slideDown(delay_dropdown_show); },
		function() { $('ul', this).slideUp(delay_dropdown_hide); $(this).removeClass("dropdown"); }
	);
	/*function mycarousel_initCallback(carousel)
	{
		// Pause autoscrolling if the user moves with the cursor over the clip.
		carousel.clip.hover(function() {
			carousel.stopAuto();
		}, function() {
			carousel.startAuto();
		});
	};
    $('#mycarousel').jcarousel({
		vertical:true,       
		auto: 4,
		wrap: 'circular',
		scroll: 	1,
		initCallback: mycarousel_initCallback
	});*/
});



