var $j = jQuery.noConflict();

$j(document).ready(function(){
	$j('#itk_tidligstes').datepicker();
	$j('#itk_icncalendar').click(function(){
		$j('#itk_tidligstes').trigger('focus');
	});
	$j('#itk_kurs a').mouseover(function(){
		theid = $j(this).attr('id').replace('_menu_', '_imgmenu_');
		newsrc = $j('#'+theid).attr('src').replace('_off', '_on');
		$j('#'+theid).attr('src', newsrc);
	});
	$j('#itk_kurs a').mouseout(function(){
		theid = $j(this).attr('id').replace('_menu_', '_imgmenu_');
		newsrc = $j('#'+theid).attr('src').replace('_on', '_off');
		$j('#'+theid).attr('src', newsrc);
	});

	$j('#itk_kurs a.itkselected').mouseover(function(){
		theid = $j(this).attr('id').replace('_menu_', '_imgmenu_');
		newsrc = $j('#'+theid).attr('src').replace('_on', '_off');
		$j('#'+theid).attr('src', newsrc);
	});
	$j('#itk_kurs a.itkselected').mouseout(function(){
		theid = $j(this).attr('id').replace('_menu_', '_imgmenu_');
		newsrc = $j('#'+theid).attr('src').replace('_off', '_on');
		$j('#'+theid).attr('src', newsrc);
	});

});