$(document).ready(function() {
	$('.coverall').hide();
 
	 $('a#large-show').click(function() {
		  $('#largebox').show(500);
	  	  $("div#lb-bg").css({opacity: 0, display: "block"}).animate({opacity: 0.9},500); //500 is the speed... feel free to change this
	return false;
  });
	 

	  $('a#close-popup').click(function() {

		  $('.coverall').hide();
			   $("div#lb-bg").fadeOut(500);
		return false;
	});
	  
	  $('div#lb-bg').click(function() {

		  $('.coverall').hide();
		   $("div#lb-bg").fadeOut(500);
	return false;
	});





	});
