var pos_x = 0;
var pos_y = 0;

$(document).ready(function(){
	
    // Alternating table rows:
		
		$('tbody tr:even').addClass("alt-row"); // Add class "alt-row" to even table rows

        //$("#main-nav li ul").hide();
    
	// Facebox:

		$('.handset-button,.terms-button').click(function(e){
		  pos_x = e.pageX;
		  pos_y = e.pageY;
		});
		

		$("#site-switcher ul li").hover(
			function () {
				$(this).stop().animate({ marginRight: "-5" }, 150);
			}, 
			function () {
				$(this).stop().animate({ marginRight: "0" }, 150);
			}
		);

});
  

function clickclear(thisfield, defaulttext) {
  if (thisfield.value == defaulttext) {
	thisfield.value = "";
  }
}

function clickrecall(thisfield, defaulttext) {
  if (thisfield.value == "") {
	thisfield.value = defaulttext;
  }
}

