// JavaScript Document
//slides
$(document).ready(function() {
						   
	$("body").removeClass("no_js");
	$("body").addClass("has_js");

	//Zeplin in footer
	$("#wee_zeplin").click(function () {
		$('#wee_zeplin').animate({left: "+=1000px"}, 1500,'easeInCirc', function() {$(this).animate({"left": "-=3000px"}, 0,function() {$(this).animate({"left": "+=2000px"}, 1200,'easeOutBounce');});});
	});
	
	//Zeplin Quote Link
	$("#zepin_quote_link").click(function () {
	$('#zepin_quote_link')
		.animate({left: "+=1600px"}, 1000, 
					function() {
							$(this).animate({"left": "-=2600px"}, 0,
								function() {$(this).animate({"left": "+=1000px"}, 1200,'easeOutBounce'),ajaxPage();});});
					return false;
	});

	var theUrl = window.location.href;
	$('a[href="'+ theUrl +'"]').parents('li').addClass('current');
	
});
 

// Nav bar
$(function() {
	$("#nav").lavaLamp({
		fx: "easeOutBack", 
		speed: 700,
		click: function(event, menuItem) {
			//return false;
		}
	});
});

// Quote redirect
function ajaxPage(){
		window.location.href = 'http://www.greenvilleweb.us/quote_web_design.php';
}

//Checks in array // See Quote Page js
function oc(a){
  var o = {};
  for(var i=0;i<a.length;i++)
  {
    o[a[i]]='';
  }
  return o;
}