var lastid = 1;
$(document).ready(function() {
	// binde buttons
	$('.prodbutton').bind('mouseover', function(){
		if(lastid != $(this).attr('rel')){
		$('#infowrapper').html('<br />');
		$('#infowrapper').load('/ajax.php?package=ch.iframe.snode.catalog&module=product_properties&param_article_id=' + $(this).attr('rel') + '&param_style=infobalken_bussines.tpl&param_group=3',function(){
		});
		}
		lastid = $(this).attr('rel');
	});


});


