$(document).ready(function(){
	var current = $("select").attr("value");
	$("#add_to_cart").attr({href: current});
	$("#price").hide().load("/new/includes/price.html", {test: 0}, function(){ 
		if(current != "http://order.store.yahoo.net/cgi-bin/wg-order?yhst-17969212906210+bpb") 
		{
			$("#blue").hide();
		}
		if(current != "http://order.store.yahoo.net/cgi-bin/wg-order?yhst-17969212906210+bpg") 
		{
			$("#green").hide(); 
		}
	    if(current != "http://order.store.yahoo.net/cgi-bin/wg-order?yhst-17969212906210+purple") 
		{		
			$("#purple").hide(); 
		}
		if(current != "http://order.store.yahoo.net/cgi-bin/wg-order?yhst-17969212906210+bpp") 
		{		
			$("#pink").hide(); 
		}
		$(this).show();
	});
	
	$("select").change(function() {	
     	var color = $(this).attr("value");
		var color_class = $(this).attr("class");
		$("#add_to_cart").attr({href: color});
		if(color != "http://order.store.yahoo.net/cgi-bin/wg-order?yhst-17969212906210+bpb") 
		{
			$("#blue").hide();
		}
		else 
		{
			$("#blue").show();	
		}
		if(color != "http://order.store.yahoo.net/cgi-bin/wg-order?yhst-17969212906210+bpg") 
		{
			$("#green").hide(); 
		}
		else 
		{
			$("#green").show();	
		}
	    if(color != "http://order.store.yahoo.net/cgi-bin/wg-order?yhst-17969212906210+purple") 
		{		
			$("#purple").hide(); 
		}
		else 
		{
			$("#purple").show();	
		}
		if(color != "http://order.store.yahoo.net/cgi-bin/wg-order?yhst-17969212906210+bpp") 
		{		
			$("#pink").hide(); 
		}
		else 
		{
			$("#pink").show();	
		}
	}); 
}); 