document.observe('dom:loaded', function() {
	
	if($$('a.zoom')) {
		$$('a.zoom').each(function(e) {
			e.observe('mouseover', function() {
				var id=e.id;
				var bild=$('img-'+id);
				var box=$('textholder');
				//box.style.width="775px";				
				bild.style.width="425px";				
			});
		});
		$$('a.zoom').each(function(e) {
			e.observe('mouseout', function() {
				var id=e.id;
				var bild=$('img-'+id);
				var box=$('textholder');
				//box.style.width="600px";				
				bild.style.width="250px";
			});
		});
		$$('a.zoom').each(function(e) {
			e.observe('click', function() {
				var tmp=e.id;
				tmp=tmp.split('Z-');
				id=tmp[1];
				url="/goto.php?ID="+id;
				top.location.href=url;
			});
		});		

		$$('a.goto').each(function(e) {
			e.observe('click', function() {
				var id=e.id;
				url="/goto.php?ID="+id;
				top.location.href=url;				
			});
		});


		$$('select.markeSel').each(function(e) {
			e.observe('change', function() {
				var id=e.options[e.selectedIndex].value;
				url="/marke/"+id;
				top.location.href=url;				
			});
		});		
		$$('select.material').each(function(e) {
			e.observe('change', function() {
				var id=e.options[e.selectedIndex].value;
				url="/auswahl/"+id;
				top.location.href=url;				
			});
		});
		$$('select.preis').each(function(e) {
			e.observe('change', function() {
				var id=e.options[e.selectedIndex].value;
				url="/preis/"+id;
				top.location.href=url;				
			});
		});		
						
	}
	
});
