var $j = jQuery.noConflict();

$j('document').ready(function(){
	$j('.ucUpdateButtonOverlay').parent().parent().parent().parent().parent().parent().parent().addClass('ucShoppingTableFooter');
	$j('[href=javascript:openChangeCurrencyWindow();]').hide();
	$j('.ucRemoveButton').parent().parent().addClass('shopping_cart_row');
});

function addThisImage(image_url) {
	//generates code for visitors to add image to their website that links back to this site.
	mywin =  window.open("", "imagelinkwin", "width=530,height=400");
	var largestr = '&#60;a href="http://www.rlmarts.com" target="_blank"&#62;&#60;img src="' +  image_url  + '" border="0" width="400" &#62;&#60;/a&#62;';
	var mystr = "<html><body>" +
	"<div style=\"font-family: verdana, arial, helvetica; font-size: 10pt; text-align: left; \">" +
	"<p>To add this image to your website, copy and paste the code into your html page.  When placed on your page, the image will link back to our website when clicked.</p>" +
	"<form name=\"form1\"><textarea name=\"image_code\" cols=\"60\" rows=\"4\">" + largestr + "</textarea></p>" +	"</form>" +
	"<a href=\"javascript: window.close();\">close this window</a></div></body></html>";
	
	mywin.document.write(mystr);
}