jQuery.fn.toggleText = function(a, b) {
	return this.each(function() {
		jQuery(this).text(jQuery(this).text() == a ? b : a);
	});
};

$(document).ready(function() {
	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme: 'light_rounded',
		show_title: true,
		overlay_gallery: false
	});

	$("#closeMsg").live("click", function() {
		$(this).parents(".message:first").hide();
	})
});


