$(function(){

    //Tabs at the bottom of Product View
	$( "#product-tabs" ).tabs();
	
	//View Detail Image
    $(".product-image-pop").click(function(){
        $( "#product-image-detail" ).dialog({ 
            width: 650, 
            modal: true,
            zIndex: 10000,
            buttons: [
                {
                    text: "Close",
                    click: function() { $(this).dialog("close"); }
                }
            ]
        });
    });

    //Size/Price Switching

    $("select#product-size").change(function(){
        var newPrice = $(this).find("option:selected").data("price");
        $(this).parents("form").find("p#price").html("$" + newPrice);
    });
 

	$("#menu").change(function() {          
    var value = $("#menu option:selected").val();
    var theDiv = $(".is" + value);

    theDiv.slideDown().removeClass("hidden");
    theDiv.siblings('[class*=is]').slideUp(function() { $(this).addClass("hidden"); });

});

});
