$(document).ready(function() {
	// Wire up a click event for the popuplink
	$('#addToFave').click(function(){
		openPopup('#addToFavePopup'); 
	    return false;
    });
	
	$('#showCode').click(function(){
		openPopup('#showCodePopup'); 
	    return false;
    });
	
	$('#newsletter').click(function(){
		openPopup('#newsletterPopup'); 
	    return false;
    });
	
	$('#closeLink').click(function(){
		closePopup('#addToFavePopup');
		return false;
	});
});

function openPopup(thePopup) {
	$(thePopup).fadeIn('slow');
}

function closePopup(thePopup) {
	$(thePopup).fadeOut();
}

