
//===================================================
//          OnLoad Handler
//===================================================
$(window).load(function () {
	
	// Button hover states
	$('.Button').each(function(index){
		$(this).hover(
			function() { $(this).addClass('Button-hover'); },
			function() { $(this).removeClass('Button-hover'); }
		);
	});
	
});


//===================================================
//          Redirect URL
//===================================================
function redirect(URL){
	document.location = URL;
}


