$(function(){
	$("a[rel='photos']").colorbox();
	$(".privacy-policy").colorbox({width:"70%", inline:true, href:"#read-privacy"});
	
	$('.scrollTo').click(function() {
		$.scrollTo($(this).attr('rel'), 800);
	});
	
	VideoJS.setup();
	
	$('.interactiveMap').gMap({
		center: [33.882141,-98.433207],
		type: 'roadmap',
		width: 718,
		height: 370,
		zoom: 11,
		markers: [
			{
				address: "2409 5th ST. Wichita Falls, TX"
			},
			{
				address: "3900 Old Jacksboro Hwy. Wichita Falls, TX"
			},
			{
				address: "2616 SouthWest Parkway Wichita Falls, TX"
			},
			{
				address: "414 W. Highway St. Iowa Park, TX"
			}
		],
		error: function(element, error) {
			$(".error").html(error);
		}
	});
	
	$(".coupon").hover(
		function() {
			if($(this).hasClass('couponGallon'))
				$(".spinner").css({'left' : '0', 'right' : 'inherit', 'top' : '20px'});
			else
				$(".spinner").css({'left' : 'inherit', 'right' : '0', 'top' : '10px'});
			
			$(".spinner").fadeIn(200);
		},
		function () {
			$(".spinner").fadeOut(200);
		}
	);
})

function popUp(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=770,height=630');");
}
