<!-- Set Focus and grab key pushes to do magic -->
$(document).ready(function() {
	var e = document.getElementsByName("FORM_callsign");
	startEntry(e[0]);
	startDownClock();

/* -- Removed Logo --
	$("#logo").fancybox({
		'titleShow'		: true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
*/

});

$(function() {
	$("#contestsummary").draggable();
	$("#logbook").resizable();
	$("#searchcalls").draggable({
		stop: function(event, ui) {
			var curx = event.clientX;
			var cury = event.clientY;
			itlprefs.searchpos.xpos = curx;
			itlprefs.searchpos.ypos = cury;
			savePrefs();
		}
	})
	$("#contestsummary").draggable({
		stop: function(event, ui) {
			var curx = event.clientX;
			var cury = event.clientY;
			itlprefs.summarypos.xpos = curx;
			itlprefs.summarypos.ypos = cury;
			savePrefs();
		}
	})
});

loadPrefs();	//Load the preferences from cookie 

