$(document).ready(function(){
$('img[src^="/v/vspfiles/photos/"]').addClass('productimage');
$('img[src^="/v/vspfiles/photos/manufacturers/"]').removeClass('productimage');
$('input.previous_page_img').hide().after('<input type="submit" id="prevpage" class="graybutton" value="Previous Page" />');
$('input#prevpage').click(function(){$('input.previous_page_img').trigger('click');})
$('input.next_page_img').hide().after('<input type="submit" id="nextpage" class="graybutton" value="Next Page" />');
$('input#nextpage').click(function(){$('input.next_page_img').trigger('click');})
$('img[src="/v/vspfiles/templates/eastcoasttvs/images/buttons/btn_addtocart_small.gif"]').replaceWith('<span class="blackbutton mediumbutton" style="display:inline-block;">Add to Cart</span>');
$('input[src="/v/vspfiles/templates/eastcoasttvs/images/buttons/btn_go_gray.gif"]').replaceWith('<input type="submit" class="graybutton smallbutton" name="Go" alt="Go" value="Go" title="Go">');
$('img[src="/v/vspfiles/templates/eastcoasttvs/images/Bullet_MoreInfo.gif"]').replaceWith('<span class="learnmore">Learn More</span>');
$('td[background="/v/vspfiles/templates/eastcoasttvs/images/Divider_Horizontal.gif"]').remove();
$('img[src="/v/vspfiles/templates/eastcoasttvs/images/SearchResults_SubCat_Angle.gif"]').remove();
$('img[src="/v/vspfiles/templates/eastcoasttvs/images/Bullet_SubCategory.gif"]').remove();
$('td.v65-productRow-bottom').remove();
$('select').wrap('<span class="selectcontainer" />');
$('span.selectcontainer select').focus(function(){
$(this).parent().css({'box-shadow': '0 0 3px 2px #5099E2', '-webkit-box-shadow': '0 0 3px 2px #5099E2', '-moz-box-shadow': '0 0 3px 2px #5099E2'});
});
$('span.selectcontainer select').blur(function(){
$(this).parent().css({'box-shadow': '0 0 3px #000000', '-webkit-box-shadow': '0 0 3px #000000', '-moz-box-shadow': '0 0 3px #000000'});
});
$('td#DisplayShippingSpeedChoicesTD span.selectcontainer select').focus(function(){
$(this).parent().css({'box-shadow': 'none', '-webkit-box-shadow': 'none', '-moz-box-shadow': 'none'});
});
$('td#DisplayShippingSpeedChoicesTD span.selectcontainer select').blur(function(){
$(this).parent().css({'box-shadow': 'none', '-webkit-box-shadow': 'none', '-moz-box-shadow': 'none'});
});
$('select#SortBy').parent().css('width', '135px');
$('font').removeAttr("face");
$('span.subcategorytitle').parents('table:last').addClass('subcategorybox');
$('input#additionalsearch').css('color','#A9A9A9').removeAttr('onfocus').removeAttr('onblur');
$('input#additionalsearch').focus(function()
{
if (this.value==='Search Within')
{
$(this).val('');
$(this).css('color','#000000');
}
});
$('input#additionalsearch').blur(function()
{
if (this.value==='')
{
$(this).css('color', '#A9A9A9');
$(this).val('Search Within');
}
});
});
