$(function(){

  $("#tSearch").maskLabel({
    css: {
      fontWeight: "bold",
      color: "#ccc"
    },
    text: "Search Products"
  });

	
  $(".warranty").click(function(){
  	$.ajax({
  		url:"/warranty.asp",
  		success: function(data){
					$("#sb-container").css({'z-index': '5000'});
					$("#sb-body").css({'background': '#fff'});
					//$("#sb-title").css({'background': '#333', 'padding':'2px 10px'});					
  	 	    Shadowbox.open({					
          content:   $(data).find(".holder").html(),
          player:     "html",
          title:      "Masterack&#174; Limited Warranty",
					height: 575,
					width:800
					});
			}				
  		});
			return false;
  });
	
	$(".displayimage").each(function(){
		$(this).attr("rel", "shadowbox");
		$(this).attr("title", $(this).text()+' - Layout Guide');
	});
});
