function isiPhone(){
    return (
        (navigator.platform.indexOf("iPhone") != -1) ||
        (navigator.platform.indexOf("iPod") != -1)
    );
}

$(document).ready(function(){
original = $("#content_2").html();

	if(isiPhone){
	$(".pr_list").mouseover(function(){
		$(".pr_active").removeClass("pr_active");
		$("#content_2").html("<div id='quick_info'><h1>"+$("a", this).html()+"</h1>"+$(".hidden", this).html()+"</div>");
		$("a", this).addClass("pr_active");
	});
	
	$(".wpsc_categories>ul").mouseleave(function(){
		$(".pr_active").removeClass("pr_active");
		$("#content_2").html(original);
	});
	}
	
	if($(".wpsc_select_variation").length>0){
	$(".currentprice").css("opacity", "0");
	}


	
	
});

