var touchedEmail = false;
var touchedName = false;

$(document).ready(function(){
	$(".menuTrans").hover(function(e){
		$(this).fadeTo(100,1);
	},function(){
		$(this).fadeTo(100,0);
	});
	$(".artistTrans").hover(function(e){
		$(this).fadeTo(100,1);
	},function(){
		$(this).fadeTo(100,0);
	});
	$("#buyTrans").hover(function(e){
		$(this).fadeTo(200,1);
	},function(){
		$(this).fadeTo(100,0);
	});
	
	$("#menuSignupEmail").focus(function(){
		if (!touchedEmail) $(this).val("");
		touchedEmail = true;
	});
	$("#menuSignupName").focus(function(){
		if (!touchedName) $(this).val("");
		touchedName = true;
	});
	$("#posterPopup").click(function(e){
		e.preventDefault();	
		window.open("images/poster-big.html","ORIGIN-NYE","menubar=0,resizable=1,width=599,height=847");

	});
	$("#mapPopup").click(function(e){
		e.preventDefault();	
		window.open("images/map.html","ORIGIN-NYE","menubar=0,resizable=1,width=650,height=590");
	});
	$("#lineupPopup").click(function(e){
		e.preventDefault();	
		window.open("images/lineup.html","ORIGIN-NYE","menubar=0,resizable=1,width=640,height=457");
	});
});