// JavaScript Document

$(document).ready(function() {
	$("#enterSite").hover(function () {
			$(this).removeClass('borderOff').addClass('borderOn');
		}, function() {
			$(this).removeClass('borderOn').addClass('borderOff');
	}).click(function() {
		location.href='/home/';
	});

	$('.photoGallery a').lightBox();
});
