$(window).load(function () {

});

$(document).ready(function(){
	
	Cufon.replace('#tagLine, h2, .popupRes .title');

	$("#nav").lavaLamp({
	                fx: "backout", 
	                speed: 700,
	                homeLeft: -1
	            });
	
	$('#footer .block a').hover(function() {
	
		$(this).find('.co').fadeIn();
	
	}, function() {
	
		$(this).find('.co').fadeOut();
	
	})
	
	$('input:radio').each(function(){
		if($(this).is(':checked'))
		{
			$("label[rel^='"+$(this).attr('id')+"']").addClass('radio_selected');
		}
		else 
		{
			$("label[rel^='"+$(this).attr('id')+"']").addClass('radio');
		}
		$(this).fadeTo(1,0);
		
		$(this).change(function(){
			$('label', $(this).parent()).removeClass('radio_selected').addClass('radio');
			$("label[rel^='"+$(this).attr('id')+"']").removeClass('radio').addClass('radio_selected');
		});
	});
});
