$(document).ready(function()
{

var stopclosing = 0;


	$("a.highslide").click(function(){
		stopclosing = 1;
	});


	$(".product_item").click(function() 
	{
		if(stopclosing == 0) {
			var pos=$(this).toggleClass("product_detail").position();
			$('html,body').animate({scrollTop: pos.top}, 500);
		}
		
		stopclosing = 0;
	});
	
	alternating_table(".produkt_text table");


});







function alternating_table(id)
{
	$(id).each(function(i)
	{
		$("tr:first",$(this)).addClass("head_row");
		$("tr:even",$(this)).addClass("row_even");
		$("tr:odd",$(this)).addClass("row_odd");
 	});
}
