$(document).ready(function() {
	$(".cs-popup").click(function(){  
		HidePopUp(this);  
	}); 
	$("#cs-popupBackground").click(function(){  
		HidePopUp(".cs-popup");  
	});   	
});

function showPopUp(ref) {
	$("#cs-popupBackground").fadeIn("slow");  
	$(ref).find(".cs-popup").fadeIn("slow");
}
	
function HidePopUp(ref) {
	$("#cs-popupBackground").fadeOut("slow"); 
	$(ref).fadeOut("slow");
}

function centerPopup(ref){  
	var x = $(ref).position().left - $(ref).outerWidth();
	var y = $(ref).position().top;
	
	//centering  
	$(ref).find(".cs-popup").css({  
		"position": "absolute",  
		"top": y,  
		"left": x,
	});   
}  
