/* Program Schedule */
$(document).ready(function() {
	$(".OH_program_schedule").each(function() {
		$(".program_time",this).hide();
		$(this).bind("click", function(e) {
			Wwidth = $(window).width();
			
			
			Xpos = e.pageX -480;
			if(Xpos < 0)
				Xpos = e.pageX;
				
			if(Xpos > Wwidth)
				Xpos = Wwidth - 480
				
			Ypos = e.pageY -10;
			$(this).next(".program_details").css({"top":Ypos, "left":Xpos});
			$(".program_details").hide();
			$(this).next(".program_details").show();
		});
		
		$(this).next(".program_details").bind("mouseleave", function() {
			$(this).fadeOut(100);
		})
		
		$(this).hover(function(){
			$(".program_time",this).show();
		},
		function() {
			$(".program_time",this).hide();
		});
	})
});