function Hide()
{
	$('#ex2').jqmHide();
}

$(document).ready(function(){
var TheID=0;
	$(".ex2trigger").click(function()
	{
		TheID = $(this).attr('id');
		$('#ex2').jqm({ajax: '/getprogramajax.aspx?id='+TheID});
		$('#ex2').jqmShow();	
	});

window.setTimeout(function(){$("#Konk").fadeIn("slow");},1000); 	


	$(".abba").click(function()
	{
		document.location="/billetter.aspx";
	});

	$(".Prog_Content").parent().css({'overflow-y' : 'hidden' });


//	if($.browser.msie) {  
//	}

//	$('.Epost').mouseover(function()
//	{
//	});

//	$(".Epost").mouseout(function()
//	{
//	});


//	$(".Epost").click(function()
//	{
//	});


//	$(".MenyTxT1").bind("mouseenter",function(){
//		var meny = $(this).find('a').attr("name");
//		$(this).find('a').find('img').attr("src",meny);		
//	}).bind("mouseleave",function(){
//		var meny = $(this).find('a').attr("id");
//		$(this).find('a').find('img').attr("src",meny);
//	});
});