$(document).ready(function(){	
	
	/*
	//Check age
	if ($.cookie('is_legal') == "yes") {
	 //legal!
	} else {
	 document.location = "age_verification.php";
	}
	*/
	
	$("#opt_in_horse").click(function() {
		console.log("click");
		$(".postal-address").toggleClass("required");
		/*if($(this).attr('checked'))
		{
				
		}
		*/
	});
	
	$("#news a").tooltip();
	
	
	$('.video-link').click(function() {
									
		var URL = $(this).attr("rel");	
		$('#video-iframe').attr("src", URL);
		return false;
		
	});
	
			
		
	
	var counter = 0;
	
	
	$.history.callback = function ( reinstate, cursor ) {
		if (typeof(reinstate) == 'undefined')
		{
			$('.close').click();
		}
	};
	
	$("#tweet").tweet({
		username: "bombardier_beer",
		avatar_size: 32,
		count: 1,
		fetch: 1,
		retweets: true,
		loading_text: "Loading"
	});
	
	
	
	
	
});

