var prodCurrentOptPrice;

function prodShowQuestion( o) {
	$(o).blur();
	$('#prodQuestion').slideDown();
	$(o).slideUp( 'slow');
}
function prodShowCommentForm( o) {
	$(o).blur();
	$('#prodCommentForm').slideDown();
	$(o).slideUp();
}
function prodVerChange( o, price) {
	if ($('.versions :checked').length > 0) {
		$('.submitContainer div:first').remove();
	}
	prodCurrentOptPrice = price;
}
$(document).ready( function() {
	$('.prod_images a, .lightbox').fancybox();
	$('.ShopHintLink').fancybox( {frameWidth:800,frameHeight:600,hideOnContentClick:false,
		callbackOnStart:function() {
			this.itemArray = [{href:$('.ShopHintLink').get(0).href+'?ajax'}];
		},
		callbackOnShow:function() {
			$('#hintCat a').click( function() { $('#hintCat dd').hide(); $('#hintCat dt').removeClass( 'selected'); $(this).parent().addClass( 'selected').next().show();});
			$('#hintCat dt:first').addClass( 'selected').next().show();
		}
	}).click( function() { return( false);});
});