// JavaScript Document
$(document).ready(function() {
	 
	
	$('.logIn').click(function() {
		//alert("hello");
		$("#loginLayer").show();
			return false;
	});
});
		
$(document).ready(function() {
	
	$('#loginClose').click(function() {
	//	alert("hello");
		$("#loginLayer").hide();
	});
});		