// rollover
$(function() {
	$('.main_menu img, .prev_btn img, .next_btn 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').click(function() {
		window.open(this.href, 'legal_popup', 'height='+600+', left='+(screen.width-650)/2+', location=no, resizable=no, scrollbars=yes, status=no, toolbar=no, top='+(screen.height-600)/2+', width='+650);
		return false;
	});
});

// cuisine jump list
$(function() {
	$('.cuisine_selector select').change( function() {
		if($(this).val() != "nochoice") window.location = $(this).val();
	});
});