// <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
//
// $Id: product_details.js 6 2008-03-27 09:07:24Z alexfkl $
//

jQuery(document).ready(function() {
	try {
		jQuery('a[@rel*=lightbox-pm]').lightBox(lightBoxConfig);
	} catch(e) {}

	try {
		$('#newProductIcon').hover(
			function() {
				$(this).fadeTo('fast', 0.1);
			},
			function() {
				$(this).fadeTo('medium', 1);
			}
		);
	} catch(e) {}

});

