$(document).ready( function (){
	$(".photo .media_show img").replaceWith ( 
		"<img"
		+ " alt=\"" + $("#mycarousel a img:first").attr("alt")
		+ "\" src=\"" + $("#mycarousel a img:first").attr("src")
		+ "\" />"
	);
	
	$(".photo #mycarousel a img").click( function() {
		$(".media_show img").replaceWith(
			"<img"
			+ " alt=\"" + $(this).attr("alt")
			+ "\" height=\"" + $(this).attr("height")
			+ "\" width=\"" + $(this).attr("width")
			+ "\" src=\"" + $(this).attr("src")
			+ "\" />"
		);
	});
	
	
	$(".video .media_show img").replaceWith ( 
		"<div class=\"obj_vid\">"
		+"<object width=\"800\" height=\"337\">"
		+ "<param name=\"movie\" value=\"" + $(".video #mycarousel a img:first").attr("alt") + "\" />"
		+ "</param><param name=\"allowFullScreen\" value=\"true\">"
		+ "</param><param name=\"allowscriptaccess\" value=\"always\"> </param> <embed src=\""
		+ $(".video #mycarousel a img:first").attr("alt") + "\""
		+ "type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"420\" height=\"337\"> </embed> </object>"
		+ "</div>"
	);

	
	$('.video #mycarousel a img').click( function() {
		$(".media_show .obj_vid").replaceWith(
			"<div class=\"obj_vid\">"
			+"<object width=\"420\" height=\"337\">"
			+ "<param name=\"movie\" value=\"" + $(this).attr("alt") + "\" />"
			+ "</param><param name=\"allowFullScreen\" value=\"true\">"
			+ "</param><param name=\"allowscriptaccess\" value=\"always\"> </param> <embed src=\""
			+ $(this).attr("alt") + "\""
			+ "type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"420\" height=\"337\"> </embed> </object>"
			+ "</div>" 
		);
	});
});
