$(document).ready(function() { 

  $("body").append("<a href='#' id='pc_t'>E</a>")
  $("#pc_t").click(function() {
    $("#page_content").slideToggle("fast");
  })

  $("table.product_compare_list tr").hover(function() {
  	$(this).addClass("hlite");
  }, function() {
  	$(this).removeClass("hlite");
  });
  
  $("input[@type=submit]").addClass("submit");
  $("input[@type=password], input[@type=text]").addClass("text");
  $("input[@type=radio]").addClass("radio");
  $("input[@type=checkbox]").addClass("checkbox");

	$("input[@type=password], input[@type=text], textarea").focus(function() {
		if (this.className.match(/\bprepopulated\b/)) {
			this.value = '';
		}

		$(this).addClass("focus");
	});
	
	$("input[@type=password], input[@type=text], textarea").blur(function(){
		if ($(this).find(".focus")) {
			$(this).removeClass("focus");
		}
	});

/*
  $("div.coupon").corner("7px");
  $("div.see").corner("3px");
*/  
  $("#product_grid .product").hover(function(){
    $(this).find("a.thumb_name").hide();
    $(this).find(".details_wrap").show();
    $(this).addClass("hovered");
  },function(){
    $(this).find("a.thumb_name").show();
    $(this).find(".details_wrap").hide();
    $(this).removeClass("hovered");
  });
});