$(document).ready(function(){
	// thumbnail images
	var bigimg=$("#ibig").html();
	$("#ismall img").click(function(){
		var image=$(this).attr("src").replace("t/", "");
		$("#ibig").children().replaceWith(bigimg);
		$("#ibig img").attr("src", image);
	});
	// video link
	$(".vid a").click(function(){
		var flv_file=$(this).parent().attr("id");
		$("#ibig img").replaceWith("<div id=\"shopvid\"><a href=\"http://www.macromedia.com/go/getflashplayer\">Get the Flash Player</a> to see this player.</div>"+
		"<script type=\"text/javascript\" src=\"/j/swfobject.js\"></script>"+
		"<script type=\"text/javascript\">"+
			"var s1 = new SWFObject(\"/f/mediaplayer.swf\",\"mediaplayer\",\"400\",\"300\",\"8\");"+
			"s1.addParam(\"allowfullscreen\",\"false\");"+
			"s1.addVariable(\"width\",\"400\");"+
			"s1.addVariable(\"height\",\"300\");"+
			"s1.addVariable(\"file\",\"/products/v/" + flv_file + "\");"+
			"s1.addVariable(\"autostart\",\"true\");"+
			"s1.addVariable(\"repeat\",\"true\");"+
			"s1.write(\"shopvid\");"+
		"</script>");
		return false;
	});
});