$(document).ready(function(){

	$("map > area").tooltip({
		positionLeft: true,
		showURL: false
		});
	
	$(".botcols").equalHeights();


	$("ul.sf-menu").superfish();  
   
	$('a.seemore').click(function () {
		var parentTag = $(this).parent().prev().html();
		$.modal(parentTag);
	});	
	
	if ($('#recip').val() != "yes") {
		$('#recipient').hide();
	}
	$('.chooser0').attr('checked', true);
		
	$('.chooser0').change(function() {
	    $('#recipient').hide();
	    return false;
	  });
		
	$('.chooser1').change(function() {
	    $('#recipient').show();
	    return false;
	  });
		
	$('.chooser2').change(function() {
	    $('#recipient').show();
	    return false;
	  });
	

	$("#subForm").validate();
	  
if (popup == true) {
  	$.modal(mypoppy);
  	
  	
$("#biggyme").modal({onClose: function (dialog) {
	dialog.data.fadeOut('slow', function () {
		dialog.container.slideUp('slow', function () {
			dialog.overlay.fadeOut('slow', function () {
				$.modal.close(); // must call this!
			});
		});
	});
}});

}

});
