$(function() {	
	// ************ on document ready **********************
	
	//add hover class to callouts
	$('.callout').hover(function() {
	  $(this).addClass('call-hover');
	}, function() {
	  $(this).removeClass('call-hover');
	});
	
	//make callout div clickable
	$(".callout").click(function(){
	    location.href = $('p a', this).attr('href');
	});
         	
	$('#survey').hide(); 
    $('#survey').show(3000);
    
    // Make survey links open in pop up 
		$('#survey a').click(function(){
			var href = $(this).attr('href');
			window.open(href,'popup','location=0,status=1,scrollbars=1,resize=1,width=600,height=650');
			return false;
		});
   
		
	// ******************************************************
});