$(function() {

	$( "#logindialog" ).dialog({
		autoOpen: false,
		width: 300,
		modal: true
	});

	$('#loginlink').click(function(){
		$('#logindialog').dialog('open');
		return false;
	});
});

$(document).ready(function(){
		$('#topmenu li.sublnk').hover(
		function() {
			$(this).addClass("selected");
			$(this).find('div').stop(true, true);
			$(this).find('div').show('fast');
		},
		function() {
			$(this).find('div').hide('fast');
			$(this).removeClass("selected");
		}
	);
});

if($.cookie("headswcook")) {
	$("#headswitch").attr("href",$.cookie("headswcook"));
}
$(document).ready(function() { 
	$("#headswitcher a").click(function() { 
		$("#headswitch").attr("href",$(this).attr('rel'));
		$.cookie("headswcook",$(this).attr('rel'), {expires: 365, path: '/'});
		return false;
	});
});
