$(document).ready(function() {
	
	$('ul.sf-menu').superfish({
		speed:         50, 
		delay:         300, 
    	autoArrows:    false  
							  });
	
	loadLoginBlock('0');
	
	jQuery("a[href^='http:'], a[href^='https:']").not("[href*='polsci.stagedsites.com']").attr('target','_blank');
						   
});

function newWindow(consent_demo, o_height, w_height){

	consentWindow=window.open(consent_demo,'peWin', 'WIDTH=' + o_height + ',HEIGHT=' + w_height + ',SCROLLBARS=yes, resizable=yes')
	consentWindow.focus()

}

function getCalloutItem( calloutQty, whichPage ) {
	
	var str = "quantity=" + calloutQty + "&page=" + whichPage;
	
	$.ajax({
				   
	  type: "POST",
	  url: "/includes/getCalloutItem.php",
	  data: str,
	  cache: false,
	  success: function(result){
		  
			$('#articles-inner').html(result);
			
	  }
	  
	});

}

function getNextProfile(profileQty, whichProfile){
	
	var str = "quantity=" + profileQty + "&page=" + whichProfile;
	
	$.ajax({
				   
	  type: "POST",
	  url: "/includes/getNextProfile.php",
	  data: str,
	  cache: false,
	  success: function(result){
		  
			$('#profileHomeCell').html(result);
			
	  }
	  
	});
	
}

//gallery page
function showGallery_cb(galleryContent) {
	//$('#showGallery').css("display", "block");
	
	$('#showGallery').fadeIn(500)
	
	document.getElementById("showGallery").innerHTML = galleryContent;
	
}
  
function showGallery(branch, galleryID, pageID) {

	x_showGallery(branch, galleryID, pageID, showGallery_cb);

}


//calendar
function getCalendar_cb(calContent) {
	
	document.getElementById("showCal").innerHTML = calContent;
}
  
function getCalendar(chosenDate, chosenSchedule, chosenLocation, chosenSubject) {
			
	x_scheduleCalendar(chosenDate, chosenSchedule, chosenLocation, chosenSubject, getCalendar_cb);

}