function print_product(prd_id)
{
	window.open('print_product_info.php?products_id=' + prd_id, 'popup', 'toolbar=0, width=640, height=600');
}

$(document).ready(function() {
    $('#tabs').tabs();

	$('#box_cart').bind('click', function() {
		$('#box_cart_content').slideDown(200);
	});

	$('#box_cart').bind('mouseleave', function() {
		$('#box_cart_content').slideUp(200);
	});

	$("a[rel^='gallery']").prettyPhoto({
		theme: 'webs'
	});

	$('table.order_details .qty').bind('mouseover', function() {
		$(this).children('span').fadeIn(100);
	});

	$('table.order_details .qty').bind('mouseleave', function() {
		$(this).children('span').fadeOut(100);
	});

	$('.form_cart_quantity_submit').bind('click', function() {
		$('#form_cart_quantity').submit();
	});
});

function fbs_click()
{
	var u=location.href;
	var t=document.title;
	window.open(
		'http://www.facebook.com/sharer.php?u='
		 + encodeURIComponent(u) + '&t='
		 + encodeURIComponent(t),
		'sharer',
		'toolbar=0,status=0,width=626,height=436'
	);
	return false;
}

