// JavaScript Document

		jQuery(document).ready(function(){
		
			jQuery(".switchsrc").mouseover(function(){
				a = jQuery(this).attr("src");
				//alert(a);
				b = a.split('http://www.come-n-see.fr/images/');
				e = b[1];
				f = e.split("_off");
				//alert(a);
				 //c = a.split('class=');
				g =f[0];
				//alert('images/'+g+'_on.png');
				jQuery(this).attr('src', 'http://www.come-n-see.fr/images/'+g+'_on.png');
				/*//c = b[1];
				//alert(c);
				d = c.split('.png');
				//alert(d);
				e =d[0];
				
				//alert(e);
				jQuery(this).html('<a href="#"><img src="images/'+f+'.png" /></a>');*/
												  
			});									  
			jQuery(".switchsrc").mouseout(function(){
					//g = jQuery(this).html();
					//alert(e);
					//g = e.replace(/_on/, "_off");
					//alert(g);
					//jQuery(this).html('<img src="images/'+g+'.png" />');
					jQuery(this).attr('src', 'http://www.come-n-see.fr/images/'+g+'_off.png');
				 });						
		});								
