/*
 * Author : Cvetozar Ninov
 * Email  : cninov@gmail.com
 * */
$(document).ready(function() 
{
	$('a',$('em.live').parent()).hover(
		function(){$('.preview_popup',$(this).parent()).fadeIn(500);},
		function(){$('.preview_popup',$(this).parent()).fadeOut(500);}
	);	
	
	$('a',$('em.ft').parent()).hover(
		function(){$('.preview_popup',$(this).parent()).fadeIn(500);},
		function(){$('.preview_popup',$(this).parent()).fadeOut(500);}
	);	
	
	$(function() {
		$(".calendar").datepicker({ 
			defaultDate: dateDiff,
			firstDay : 1,
			dateFormat : "yy/mm/dd/",
			onSelect: function(e) {
				location.href=_root+e;	
			}
		});
	});
	
	$(".ui-state-highlight").removeClass("ui-state-highlight");
	$(".ui-state-active").addClass("ui-state-highlight");
	var a = $('.ui-state-highlight');
	$("a",a.parent().parent()).addClass("ui-state-highlight");
});
