var $jQ = jQuery.noConflict();

$jQ(document).ready(function(){
	
	$jQ(".myclick").click(function(){
		
		var myString = $jQ(this).attr("class").match(/myid_\d+/);
		var myID = myString[0];
		
		var myimg = $jQ(".product_option, ."+myID).children("img#i"+myID);
		var linkImg = $jQ(".product_option, ."+myID).children("img#i"+myID).attr("src");
		var newlink = $jQ(".product_option, ."+myID).children("img#i"+myID).attr("src");
		
		var split = $jQ(".product_option, ."+myID).children("img#i"+myID).attr("src").split("_");
		
		if(split[1]=="dol.jpg")
		{	
			newlink = linkImg.replace(split[1], "gora.jpg");
		}
		
		if(split[1]=="gora.jpg")
		{	
			newlink = linkImg.replace(split[1], "dol.jpg");
		}
		
		$jQ(".product_name, ."+myID).children("#h"+myID).slideToggle('slow', function(){
			
			myimg.attr("src", newlink);
		});
 
	});

});
