$(document).ready(function(){
	if(jQuery().prettyPhoto==undefined){
		//well.. IE didn't understand if(jQuery().prettyPhoto) or if(jQuery().prettyPhoto!=undefined)...
	}else{
		if(((!$.browser.msie||parseInt($.browser.version)>6))){
			$("a[rel^='gallery']").each(function(){
				var srcRegExp = new RegExp(/\s(\/.*)$/g);
				var src = srcRegExp.exec($(this).attr("rel"));
				$(this).attr("href",src[1]);
				$(this).attr("rel","gallery[aa]");
			});
			$("a[rel^='gallery']").prettyPhoto({theme: 'facebook', showTitle:false});
		}else{
			
		}
	}
});
