// 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() {
	$('.popup').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;
	});
});