// jQuery Functions


/* Dropdown Menu */
$(document).ready(function () {	
	$('#nav li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(100);
		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(100);			
		}
	);
});

/* jCarousel Lite */
$(function() {
    $(".carouselContainer .carousel").jCarouselLite({
        btnNext: ".carouselContainer .next",
        btnPrev: ".carouselContainer .prev",
		visible: 5
    });
});


/* Fancybox */
$(document).ready(function() {
	/* This is basic - uses default settings */
	$("a#image").fancybox();
	/* Using custom settings */
	$("a#inline, a.iframe").fancybox({
		'hideOnContentClick': true,
		'frameWidth': 420,
		'frameHeight': 295,
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayShow': true,
		'easingIn': 'easeOutBack',
		'easingOut': 'easeInBack'
	});
	$("a.group").fancybox({
		'zoomSpeedIn': 300,
		'zoomSpeedOut': 300,
		'overlayShow': true,
		'easingIn': 'easeOutBack',
		'easingOut': 'easeInBack'
	});
}); 
