// This basically fakes a click on the default lightbox close button when the new styled close button is clicked
$(".light-box-style-1").each( function() {
	var defaultCloseButton = $("#TB_closeWindowButton");
	$(this).find("a.lbs1-close-button").click( function() {
		$(defaultCloseButton).click();
		return false;	
	});
});
