

function change(IDname){
	
	changePicture(IDname);	
	
}




function changeColor(picName, farbe, ID) {
	
	document.images.prod_img.src='img/' + picName + '_' + farbe + '.jpg';
	
	if (document.getElementById('artID').write) {
		document.getElementById('artID').write = ID;
	}
	else {
		document.getElementById('artID').innerHTML = ID + ' (' + farbe + ')';
	}
	//$('prodImg').update('<img src="img/' + picName + '_' + farbe + '.jpg" border="0" />');
	
}

$(document).ready(function(){
	
	$("a.prodmenu").hover(function(event) {
			
			event.preventDefault();
			
			var active_menu=this.id;

			$(this).css("background-image","none");
			

			
			$("a.prodmenu").each(function(){
				if (active_menu!=this.id) {
					if ($(this).css("background-image")=='none') {
		  				$(this).css("background-image","url(http://www.plastidip.de/img/prodnav.gif)");
					}
				}
			});
		  	
		  	
		},
		function () {
        
      	}
     );

});