/* GENERAL TACTICS */
jQuery(document).ready(function($) {
	//$('#homePop').hide();
	$(".popClose").click(function(e) {
		e.preventDefault();
		$('#homePop').fadeOut(1200);
	});
	$('#homeWrap').delay(800).animate({'margin-top':0},2000);
});

