<!--
$(document).ready(function() {
	// top nav
	$(".TopNav").hover(
	function() {
		$(this).removeClass("TopNav");
		$(this).addClass("TopNavOn");
	},
	function() {
		$(this).removeClass("TopNavOn");
		$(this).addClass("TopNav");
	});
	
	// alpha effect
	$(".Alpha50").hover(
	function() {
		$(this).removeClass("Alpha50");
	},
	function() {
		$(this).addClass("Alpha50");
	});
	
	// button hover effect
	$(".ButtonSubmit").hover(
	function() {
		$(this).removeClass("ButtonSubmit");
		$(this).addClass("ButtonSubmitHover");
	},
	function() {
		$(this).removeClass("ButtonSubmitHover");
		$(this).addClass("ButtonSubmit");
	});
	
});

// load ajax content 
function AjaxThis(action,id) {
	$.ajax({ 
		url: action,
		cache: false, 
		success: function(html) {
			$(id).html(html);
		}
	});
}

//-->

