
$(document).ready(function() {
				
						
						var x=$('.t4').html();
						var ff=x.replace("Sub Total: ","");
						$('.t4').html(ff);
						
						$('.tame li:gt(5)').hide();
						$('#seeall').click(function(){
													$('.tame li:gt(5)').show();
													return false;
													
													});
						$('#imageholder img:eq(2)').css('margin-top',"6px");
						$('#ctl00_ctrlSearch_SearchText').val('product search...');
						$('input').click(
function() {
if (this.value == 'product search...') {
this.value = '';
}
}
);
$('#ctl00_ctrlSearch_SearchText').blur(
function() {
if (this.value == '') {
this.value = 'product search...';
}
}
);


						
  
 });

