jQuery.noConflict();
jQuery(document).ready(
	function(){
		var middle=jQuery("#tag_cloud-2 div").html();
		jQuery("#tag_cloud-2 *").remove();
		var before="<img src='./wp-content/themes/shoot-it/images/tcFrame_lt.png' width='10' height='10' class='shadow-leftTop' /><span class='shadow-midTop'></span><img src='./wp-content/themes/shoot-it/images/tcFrame_rt.png' width='10' height='10' class='shadow-rightTop' /><ul class='shadow-leftMid'><li class='shadow-rightMid'><div><p>";
		var after="</p></div></li></ul><img src='./wp-content/themes/shoot-it/images/tcFrame_lb.png' width='10' height='10' class='shadow-leftBottom' /><span class='shadow-midBottom'></span><img src='./wp-content/themes/shoot-it/images/tcFrame_rb.png' width='10' height='10' class='shadow-rightBottom' />";
		jQuery("#tag_cloud-2").append(before+middle+after);
		jQuery("#tag_cloud-2").hover(
			function(){
				jQuery(this).removeClass("refresh");
				jQuery(this).css("z-index","100");
				jQuery(this).animate({
					height:"240px",
					width:"500px",
					marginLeft:"-305px"
					},100);
			},
			function(){
				jQuery(this).stop();
				jQuery(this).removeAttr("style");
			}
		);
	}
);
