// main nav rollover
$(function() {
	$('.main_menu img').hover(function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('class'));
		$(this).attr('class', currentImg);
	}, function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('class'));
		$(this).attr('class', currentImg);
	});
});

// popup
$(function() {
	$('.footer a, a.popup').click(function() {
		window.open(this.href, 'legal_popup', 'height='+550+', left='+(screen.width-650)/2+', location=no, resizable=no, scrollbars=yes, status=no, toolbar=no, top='+(screen.height-550)/2+', width='+650);
		return false;
	});
});

// cuisine jump list
$(function() {
	$('.cuisine_selector select').change( function() {
		if($(this).val() != "nochoice") window.location = $(this).val();
	});
});

// share cookie set
$(function() {
	$('.text_menu a.share').click(function() {
		$.cookie('share_location',window.location,{path:'/',domain:'polkadotwines.com'});
		return true;
	});
});
