$(document).ready(function(){


	$(".menu .parent").hover(
		function () {
			$(this).addClass("over");
		},
		function () {
			$(this).removeClass("over");
		}
   	);
	

	$(".sections li").hover(
		function () {
			$("ul", this).show();
		},
		function () {
			$("ul", this).hide();
		}
   	);
	
	$('#our-work-gallery-item p>a>img').corner();
	$('#our-work-gallery-item .work').corner();
	
	$("a.box").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});

});
 
