
jQuery.log = function(message) { if(window.console) { console.debug(message); } else { alert(message);}};

$(function() {

	$('a').click(function(){$(this).blur();});

	$("#home_scroll").scrollable({size: 1,clickable:false}).circular().autoscroll({
		steps: 1,
		interval: 5000,
		autopause:true
	});

	$("#news_scroll").scrollable({size: 1}).navigator({});

	$(".table_product_information tbody tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
	$(".table_product_information tbody tr:even").addClass("alt");

});



