/* -----------------------------------------------------------------------------------

	menu

----------------------------------------------------------------------------------- */

var $ = jQuery.noConflict();
$(document).ready(function(){
	$('#header ul li.parent').hover(
		function() {
			$(this).find('> ul').stop(false, true).fadeIn();
			$(this).find('>ul ul').stop(false, true).fadeOut('fast');
		},
		function() {
			$(this).find('ul').stop(false, true).fadeOut('fast');
		}
	);

});

/* -----------------------------------------------------------------------------------

	carousel

----------------------------------------------------------------------------------- */

$(window).load(function(){
		$('#carousel-inside').bxSlider({
			displaySlideQty: 4,
			auto: true,
			pause: 5000
		});
});

/* -----------------------------------------------------------------------------------

	slider

----------------------------------------------------------------------------------- */

$(window).load(function() {
    $('#slider').nivoSlider();
});

/* -----------------------------------------------------------------------------------

	fancybox

----------------------------------------------------------------------------------- */

$(document).ready(function() {
	$("a.fancybox").fancybox({
		'speedIn':	600, 
		'speedOut':	200, 
		'overlayShow':true
	});
	$(".map").fancybox();
});
