 $j(document).ready(
	function() {
		
	 $j(".compact li a").mouseover (
			function()  {
			
				var myText = $j(this).text();
				var myId =  $j(this).attr("id");
				var myFilePath = document.location.toString();

				   if (myFilePath.match('modulo')) { // set modulo path
						var myFilePath = "/images/products/modulo/mouseover/" + myId + ".jpg"
				   }
				   else {
						var myFilePath = "/images/products/parmur/mouseover/" + myId + ".jpg"
				   }
	 
				$j("#swatch-image").attr({ src: myFilePath });
				$j("p#swatch-title").text(myText);
			}
		 );  
	
	 }
);
 