function polaroid(img1,img2,img3){
	
	typeof(img1) != 'undefined' ? img1 : '';
	typeof(img2) != 'undefined' ? img2 : '';
	typeof(img3) != 'undefined' ? img3 : '';
	
	i1 = img1.split(',');
	i2 = img2.split(',');
	i3 = img3.split(',');
	
	photostr = i1[0] + ',' + i2[0] + ',' + i3[0];
	taglinestr = i1[1] + ',' + i2[1] + ',' + i3[1];
	
	flashhtml = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="375" height="528" id="photos" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="/images/photos.swf" /><param name="flashVars" value="photostr='+photostr+'&taglinestr='+taglinestr+'" /><param name="quality" value="best" /><param name="bgcolor" value="#000000" /><embed src="/images/photos.swf" quality="best" bgcolor="#000000" width="375" height="528" name="photos" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashVars="photostr='+photostr+'&taglinestr='+taglinestr+'" /></object>';
	
	$('#subContentRight').html(flashhtml);
}