//from jquery.rightClick.js
$(document).ready( function() {

    // Capture right click
    $("img, #black_cloud_inner, .zp-img-overlay").rightClick( function(e) {
        // Do something
        alert("Copyright © 2009 by The Panador Hat Company. All Rights Reserved.");
    });
    // Disable context menu on an element
    $("img, #black_cloud_inner, .zp-img-overlay").noContext();





    //-- breadcrumb adjustment --
    $('#zp-breadcrumbs a[href*="products.php"]').addClass('zp-hide')
    $('#zp-breadcrumbs a[href*="products.php"] + span.zp-breadarrow').addClass('zp-hide')
    //-- end breadcrumb adjustment -->


    //-- weave detail img display selection --
    if ($('.block-product-details').length > 0){ //check if it's the product details page
	if ($('#ultimate-gambler-panama-hat').length > 0 ||
	    $('#ultimate-outback-panama-hat').length > 0 ||
	    $('#black-gambler-panama-hat').length > 0 ||
	    $('#black-fedora-panama-hat').length > 0 ||
	    $('#vented-havana-fedora-black-panama-hat-short-brim-trilby-style').length > 0 ||				// mrg - 11/23/09
	    $('#havana-fedora-black-panama-hat-short-brim-trilby-style').length > 0 ||						// mrg - 11/23/09
		$('#snap-brim-fedora-panama-hat').length > 0 ||
	    $('#outback-panama-hat-with-braided-band').length > 0 ||
	    $('#snap-brim-safari-panama-hat').length > 0 ||
	    $('#vented-gambler-panama-hat').length > 0 ) {
	    $('#zp-weave-detail').addClass('zp-exquisito'); 
	    $('#zp-weave-link').attr('href','images/weave_detail/exquisito_zoom.png'); 
	} else
	if ($('#classic-gambler-panama-hat').length > 0 ||
	    $('#classic-fedora-panama-hat').length > 0 ||
	    $('#classic-snap-brim-safari-panama-hat').length > 0 ||
	    $('#xxl-classic-diamonte-fedora-panama-hat').length > 0 ||					// mrg - 11/23/09
		$('#xxl-classic-snap-brim-safari-panama-hat').length > 0 ) {				// mrg - 11/23/09
	    $('#zp-weave-detail').addClass('zp-maestro'); 								// mrg - 11/05/09
	    $('#zp-weave-link').attr('href','images/weave_detail/maestro_zoom.png'); 	// mrg - 11/05/09
	} else
	if ($('#maestro-fedora-panama-hat').length > 0 ||
	    $('#maestro-gambler-panama-hat').length > 0 ||
	    $('#maestro-outback-panama-hat').length > 0 ) {
	    $('#zp-weave-detail').addClass('zp-maestro'); 
	    $('#zp-weave-link').attr('href','images/weave_detail/maestro_zoom.png'); 
	} else
	if ($('#christys-fedora-virtuoso-panama-hat').length > 0 ||
	    $('#virtuoso-natural-fedora-panama-hat').length > 0 ||
	    $('#montecristi-panama-hat-black-fedora').length > 0 ||					// mrg - 08/11/10
	    $('#montecristi-panama-hat-natural-fedora').length > 0 ||					// mrg - 08/11/10
	    $('#virtuoso-black-fedora-panama-hat').length > 0 ) {
	    $('#zp-weave-detail').addClass('zp-virtuoso'); 
	    $('#zp-weave-link').attr('href','images/weave_detail/virtuoso_zoom.png'); 
	} else //if jackets, hide block link
	if ($('#leather-blazer').length > 0 ||
	    $('#classic-leather-bomber-jacket').length > 0 ) {
	    $('#zp-weave-link').addClass('zp-hide'); 
	}
    }
    //-- end weave detail img display selection

//	Make the left-hand graphic for the grand opening special fade on roll over, slowly
	
		$('.zp-image-fade').hover(function(){
			$(this).fadeTo("slow", 0.75); // This should set the opacity to 10% on hover
		},function(){
			$(this).fadeTo("slow", 1.0); // This should set the opacity back to 100% on mouseout
		});



    //-- great value img display selection --
    if ($('.block-product-details').length > 0){ //check if it's the product details page
	if ($('#classic-fedora-panama-hat').length > 0 ||
	    $('#classic-gambler-panama-hat').length > 0 ||
 	    $('#classic-snap-brim-safari-panama-hat').length > 0 ||
 	    $('#black-gambler-panama-hat').length > 0 ||
 	    $('#black-fedora-panama-hat').length > 0 ||
 	    $('#ultimate-gambler-panama-hat').length > 0 ||
 	    $('#ultimate-outback-panama-hat').length > 0 )  {
	    $('#zp-value').removeClass('zp-hide');
	}
    }

	//use #zp-value for product details page, .zp-value for product list pages
    
    if ($('.block-products-list').length > 0){ //check if it's the product list page
	//classic-fedora-panama-hat
	if ($('#zp-product1').length > 0 ){ $('#zp-product1 .zp-value-icon').removeClass('zp-hide'); }
	//classic-gambler-panama-hat
	if ($('#zp-product2').length > 0 ){ $('#zp-product2 .zp-value-icon').removeClass('zp-hide'); }
	//classic-snap-brim-safari-panama-hat
	if ($('#zp-product3').length > 0 ){ $('#zp-product3 .zp-value-icon').removeClass('zp-hide'); }
	//black-gambler-panama-hat
	if ($('#zp-product5').length > 0 ){ $('#zp-product5 .zp-value-icon').removeClass('zp-hide'); }
	//black-fedora-panama-hat
	if ($('#zp-product4').length > 0 ){ $('#zp-product4 .zp-value-icon').removeClass('zp-hide'); }
	//ultimate-outback-panama-hat
	if ($('#zp-product6').length > 0 ){ $('#zp-product6 .zp-value-icon').removeClass('zp-hide'); }
	//ultimate-gambler-panama-hat
	if ($('#zp-product7').length > 0 ){ $('#zp-product7 .zp-value-icon').removeClass('zp-hide'); }
	
    }

    //-- end great value img display selection






});

// mrg testing – find the third table in the #spec_data div,
//$('#spec_data table:eq(2)').addClass('zp-spec-table');