
$(document).ready(function(){
	
	
	$(".colorBox").click(function(){
		
		_href = $(this).attr("href");
		
		$.fn.colorbox({open:true, inline:true, href:_href, opacity: "0.74"});
		return false;
	});
	
	
	$(".copyImg").each(function(){
		
		_width = $(this).width();
		
		$(this).after('<span class="imgZoom"><img alt="zoom" src="/images/icon_zoomImage.gif" /></span>');
		$(this).next(".imgZoom").css("width",_width);
	});
	
	$(".imgZoom img").click(function(){
		
		var _href = $(this).parent().prev("img").attr("src");
		
		_href = _href.replace("_thumb", "_main");
		$.fn.colorbox({open:true, href: _href, opacity: "0.0"});
	});
	
	$(".video_link, .video_icon").click(function(){
		_id = $(this).attr("id");
		_id = _id.replace("vid_", "");
		_href = 'http://player.vimeo.com/video/'+_id+'?title=0&amp;byline=0&amp;portrait=0&amp;autoplay=1" width="601" height="338" frameborder="0"';
		$.fn.colorbox({open:true, iframe:true, href:_href, width:"601px", height:"338px", opacity: "0.74"});
		return false;
	});

	
	$("#maillingListForm").submit(function(){
		
		var _data = "submitCode=978yshiudjkfghk&"
		
		$(this).find('input[type!="submit"]').each(function(){
			
			_data += $(this).attr("name") + "=" + $(this).attr("value") +"&";
			
		});
		
		_data += "done=true";
		
		var _this = $(this);
		
		$.ajax({
			type: "POST",
			url: "/handlers/mailing_list",
			data: _data,
			success: function(msg){
				//alert( msg );
				
				if(msg == "Success")
				{
					
					_this.html("<p>&nbsp;</p><p>&nbsp;</p><h3>Thank you for signing up for our email list!</h3>");
					
				} else {
					
					_this.html("<p>&nbsp;</p><p>&nbsp;</p><h3>There has been an error. Please try again later.</h3>");
					
				}
			}
		});
		
		
		
		return false;
		
	});
	
});

function copyFields()
{
	document.getElementById('Shipping_Name').value = "";
	document.getElementById('Shipping_Address_Line_1').value    = "";
	document.getElementById('Shipping_Address_Line_2').value = "";
	
	document.getElementById('Shipping_City').value    = "";
	document.getElementById('Shipping_Zip').value     = "";
	document.getElementById('Shipping_Phone').value   = "";
	

	if(document.getElementById('Billing_Name'))
	{
		document.getElementById('Shipping_Name').value  = (document.getElementById('Billing_Name').value)? document.getElementById('Billing_Name').value: '';
	} else {
		document.getElementById('Shipping_Name').value  = (document.getElementById('Member_Name').value)? document.getElementById('Member_Name').value: '';
	}
	
	document.getElementById('Shipping_Address_Line_1').value    = document.getElementById('Billing_Address_Line_1').value;
	document.getElementById('Shipping_Address_Line_2').value = (document.getElementById('Billing_Address_Line_2').value)? document.getElementById('Billing_Address_Line_2').value: '';
	
	document.getElementById('Shipping_City').value    = document.getElementById('Billing_City').value;
	document.getElementById('Shipping_Zip').value     = document.getElementById('Billing_Zip').value;
	document.getElementById('Shipping_Phone').value   = document.getElementById('Billing_Phone').value;
	

	return false;
}


Cufon.replace('h1, h2, h3');
Cufon.replace('#left_nav li', { textShadow: "1px 1px #1e160c", hover:true });





