$(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>");
	})

	$("#flashArea").flashInjection({
		XHTMLcontentContainer:"#flashArea",
		flashSource: "/flash/profile_nav/profile_nav.swf",
		flashWidth: 460,
		flashHeight: 80,
		flashVersion: 8,
		flashParams:{
			quality: "high",
			wmode: "transparent",
			scale: "noscale",
			salign: "lt",
			allowScriptAccess: "always"
		}
	})

});

