(function() {
	jQuery(
			'<img src="/content/tv/common/images/promo/ipg_overlay.png" width="200" height="150" alt="Click to enlarge" id="ipg-enlarge" />')
			.css( {
				cursor : "pointer",
				display : "none",
				position : "absolute",
				left : "-500px",
				top : 0
			}).appendTo("#siteContainer").supersleight();
	jQuery("div.feat img:first-child").not("img.noEnlarge").bind(
			"mouseenter",
			function() {
				var a = jQuery(this).position();
				jQuery("#ipg-enlarge").css( {
					top : a.top,
					left : a.left
				}).data("largeSrc", this.src.split(".jpg")[0] + "_large.jpg")
						.show();
			});
	jQuery("#ipg-enlarge")
			.bind("mouseleave", function() {
				jQuery(this).hide();
			})
			.bind(
					"click",
					function() {
						jQuery(
								'<img src="' + jQuery(this).data("largeSrc") + '" width="450" height="252" alt="" />')
								.modal(
										{
											opacity : 25,
											closeHTML : '<a class="close">Close</a>',
											onOpen : function(a) {
												a.overlay
														.fadeIn(
																"slow",
																function() {
																	a.container
																			.slideDown(
																					"slow",
																					function() {
																						a.data
																								.fadeIn("slow");
																					});
																});
											}
										});
					});
})();
