﻿$(document).ready(function(){

	$("a").focus(function() {
		$(this).blur();
	});
	
	$("#splash").mouseover(
		function() {
			$("#splash").toggle("slow");
	});


	 $('.lightview').facebox();

});

