// JavaScript Document

// on DOM ready:
$(function(){
	$('#search-block-form .form-submit').val('');
	$('#search-form .form-submit').val('');

	$('a').each(function() {
		if ( $(this).attr('href').substr(0,7)=='http://' || $(this).attr('href').substr(0,8)=='https://' ) {
			$(this).attr({'target':'_blank'});
		}
	});

	$('div.popup').hide();
	
	// for Gen Ed page, display bubble onHover of trigger text
	$('.popup_trigger').hover(function(e) {
		// first, close all
		$('div.popup').hide();
		$('div.popup').css('z-index', 1);
		$('span.popup_trigger').css('z-index', 1);
				
		if ( e.pageX < 350 ) {
			$("div", this).css('left', 0);
			$("div>div.inner", this).css('background', 'url(/home/sites/all/themes/fas/images/bubble_top_left.png) no-repeat top left');
		}	
		
		$("div", this).css('z-index', 99);
		$(this).css('z-index', 99);
		$("div", this).show();	
	});
	
	// hide button onClick of close button
	$('.popup_close').click(function(e) {
		$('div.popup').hide();
		//$('div.popup').css('z-index', 1);
		//$('span.popup_trigger').css('z-index', 1);
	});
});


