
$(document).ready(function(){

	// Open links in new tab for anchors with class "new_tab"
	$(".new_tab").click(function() {
		window.open(this.href);
		return false;
	});

	// Add page to favorite
	$('#add_to_favorite').jFav();

	// Scroll to top
	$('#top').click(function(){
		$('html').animate({scrollTop:0}, 'slow');
	});

	// Initialization of tabs in commodity detail
	$('#tabs').tabs();

});

