﻿$(function(){
	//display the hover div
	$("#menu > li, #socialmenu > li, #gallerymenu > li").show("fast", function() {
		//append the background div
		$(this).append("<div></div>");
		//on link hover
		$(this).children("a").hover(function(){
			//fade in the background
			$(this).parent().children("div")
				.stop()
				.css({"display": "none", "opacity": "1"})
				.fadeIn(500);
		},function(){
			//fade out the background
			$(this).parent().children("div")
				.stop()
				.fadeOut(500);
		});
	});
	
	$('a.lb').lightBox({containerResizeSpeed: 600});
	
	$('#mycarousel').jcarousel();
});
