$(document).ready(function(){
	$("ul.mainMenu li").hover(function(){
		$(this).find("ul.subMenu").show();
	}, function(){
		$(this).find("ul.subMenu").hide();
	});
	$(".spot").colorbox({href:"../../assets/spot.html"});
	
	$("a").click(function(e){
		if ( $(this).attr("rel") === '_blank' ) {
			e.preventDefault();
			window.open( $(this).attr("href"), 'NewWindow' );
		}
	});
});

