$(function(){
	var contentH = $('#content').height();
	
	$('#header #menu ul li').each(function(){
		$(this).hover(function(){
			$('div.child', this).css('visibility', 'visible');
			
			if($("#slider-container").length != 0){
				clearInterval(theInt);
			}
		}, function(){
			$('div.child', this).css('visibility', 'hidden');
			
			if($("#slider-container").length != 0){
				theInterval();
			}
		});
	});
	
	if($("a.fancy").length != 0){
		$("a.fancy").fancybox({
			'titleShow':false,
			'transitionIn':'elastic',
			'transitionOut':'elastic'
		});
	}
});
