$(document).ready(function(){
	function flip() {
		
		
			$("img","#mainImg").replaceWith('<img src="'+ $(this).attr('rel') +'" alt="' + $(this).attr('title') + '" title="' + $(this).attr('title') + '" />');	
			$("p", "#mainImg").replaceWith('<p style="display:none;">' + $(this).attr('title') + '</p>');
	}
	
	$("img.preview").bind('click',flip);
});
