$(document).ready(function(){
	$("a.alert").click(function(){
		tb_show(null,this.href+'?width=539&height=285',false); 
		return false; 
	})
	$('.buy-online-map li a.uk').hover(function() {
	  $('.buy-online-map').addClass('uk');
	}, function() {
	  $('.buy-online-map').removeClass('uk');
	});	
	$('.buy-online-map li a.us').hover(function() {
	  $('.buy-online-map').addClass('us');
	}, function() {
	  $('.buy-online-map').removeClass('us');
	});	
	$('.buy-online-map li a.rotw').hover(function() {
	  $('.buy-online-map').addClass('rotw');
	}, function() {
	  $('.buy-online-map').removeClass('rotw');
	});	
});


 
$.fn.clearForm = function() {
  return this.each(function() {
    var type = this.type, tag = this.tagName.toLowerCase();
    if (tag == 'form')
      return $(':input',this).clearForm();
    if (type == 'text' || type == 'password' || tag == 'textarea')
      this.value = '';
    else if (type == 'checkbox' || type == 'radio')
      this.checked = false;
    else if (tag == 'select')
      this.selectedIndex = -1;
  });
};