$(document).ready(function(){



	jQuery("#pictures li img").mouseover(function(){
			var img=jQuery(this);
			changeText(img);	
	});
	
	

	var content=jQuery("#initInfo").html();	
	 if( content!=null) {
		jQuery("#product").html(content);	
	 }else{
		var img=jQuery("#pictures li img:first");
		changeText(img);	
	 }
	

	 function changeText(img){

		/**privious the picture**/
		var small_src=img.attr("src");
		intercept_to=small_src.toLowerCase().indexOf('\.jpg');
		intercept_from=small_src.toLowerCase().lastIndexOf('_')+1;
	

		var index=small_src.substring(intercept_from,intercept_to);
		

		index=parseInt(index)-1;
		var content=jQuery("#tabs  li:eq("+index+")").html();	
		
		jQuery("#product").html(content);		
	}

});
