$(document).ready(function(){	

	$(".profileOverlay").bgIframe();

	$('#photoView li').hover(
		function(){
			$(this).css('position', 'relative').children('.profileOverlay').show().end()
				.children('img:first').addClass('hover');
		},
		function(){
			$(this).css('position', 'static').children('.profileOverlay').hide().end()
				.children('img:first').removeClass('hover');
		}
	);
	
	$("td.lv_f").each(function(){
		//console.log($(this));
		$(this).prepend("<span>.</span>");
	})

});

