$(document).ready(function() {	

	if(typeof $.fn.colorbox == 'function') {
		$("a[rel='galleryImg']").colorbox();
		$("a.colorbox").colorbox();			
		$(".socialForm").colorbox({width:"20%", height:"80%",iframe:true});
	}

	//console.log(document.referrer);

/* !Email a Friend Social Button ============================== */
	//console.log($("#incomingLink").val());
 	$("#incomingLink").val(document.referrer);
	//console.log($("#incomingLink").val());
});

// Get Date For Form Processor
var getDate=new Date()
var getYear=getDate.getYear()
if (getYear < 1000)
getYear+=1900
var getDay=getDate.getDay()
var getMonth=getDate.getMonth()+1
if (getMonth<10)
getMonth="0"+getMonth
var getCurrentDay=getDate.getDate()
if (getCurrentDay<10)
getCurrentDay="0"+getCurrentDay
var theDate = getMonth+"/"+getCurrentDay+"/"+getYear 
