$(document).ready(function(){
	$("div.callout").hover(
		function () {
			
			$(this).find("div.callout_hover").fadeIn('medium');
		}, 
		function () {
			$(this).find("div.callout_hover").fadeOut('medium');
		}
	);

	
	$(function() {
        $('.callout').hover(function(){
               $(this).addClass('over');
        }, function() {
               $(this).removeClass('over');
        });
	});


	$("a.memberlogin").click(function() {
		$("div#login").fadeIn('medium');
		return false
	});
	
	$('div#login').click(function(e){
		/*** stops clicks inside the login box from being picked up by the next function ***/
		e.stopPropagation();
	});
     
	$(document).bind("click", function() { 
		$("div#login").fadeOut('medium');
	});

	

	
	$('.2columns').columnize({width: 350});
});

