$(document).ready(function(){
	$(".thumbs img").click(function(){
		var largePath = $(this).attr("fullImagePath");		
		$("object#fullFlashView").replaceWith("<div id='fullViewContainer'><img id='largeImg' src="+largePath+"  style='margin: 0 10px 10px 0px; float: left;'></div>");
		$("#largeImg").attr({ src: largePath });		
		return false;
	});
	$(".thumbs object").click(function(){		
		$("div#fullViewContainer").replaceWith("<object id='fullFlashView' style='margin: 0pt 10px 10px 0px; float: left;'>"+$(this).html()+"</object>");
		$("object#fullFlashView embed").attr({ width: 400, height: 400 }); 
	});
});