jQuery(function($)
{
	// Tabs
	jQuery('#tabs').tabs();
	//hover states on the static widgets
	jQuery('#dialog_link, ul#icons li').hover(
		function() { jQuery(this).addClass('ui-state-hover'); }, 
		function() { jQuery(this).removeClass('ui-state-hover'); }
	);
});

document.observe('dom:loaded', initProductPage);

function initProductPage()
{
	$$('.prodPhoto').each(function(el) {
		$(el).observe('click', switchPhoto);
	});
}

function switchPhoto(evt)
{
	var photoSrc = Event.element(evt).src;
	$('bigPhoto').src = photoSrc.replace(/50x43/ig, "210x180");
}

