$(document).ready(function() {

	$('li.thumb6 a, #nav li.nav2 a').hover(
		function() {
			$('ul#nav li.nav2 a,li.thumb6 a').addClass("hover");
		},
		function() {
			$('ul#nav li.nav2 a,li.thumb6 a').removeClass("hover");
		}
	);
	
	$('#competition button').hover(
		function() {
			$(this).addClass("hover");
		},
		function() {
			$(this).removeClass("hover");
		}		
	);
		
	// $('a.terms-popup').click(
	// 	function() {
	// 		window.open($(this).attr("href"), "popup", "height=475, width=700, scrollbars=1");
	// 		return false;
	// 	}
	// );
	
});
