// JavaScript Document
var $fix = jQuery.noConflict();
$fix(document).ready(function() {
	$fix(".RZProductPage table").each(function(){
			if($fix(this).attr("width") > 668) {
				$fix(this).attr("width", 668);
			}
		  });
	$fix(".RZProductPage img").each(function(){
			if($fix(this).attr("width") > 668) {
				$fix(this).attr("width", 668);
			}
		  });	  
});		  
