/* ---------------------------------------------------------------------------
	
	Florida School for The Deaf and The Blind Master Javascript file
	http://www.fsdb.k12.fl.us
	
	Author: nGen Works
	http://ngenworks.com
	
--------------------------------------------------------------------------- */

function init()
{

	// foot
	$("#foot-nav div.foot-nav-list:last-child").addClass('last');
	$("#foot li:last-child").addClass('last');
	
	// gallery business 
	$('#gallery').jqGalViewII();
	$(".gvIIContainer .gvIIHolder .gvIIItem:nth-child(4n)").addClass('last-in-row');

	// Set sort by select to trigger onChange
	$("#sort-news").change(function() {
		window.location=$(this).val();
	});
}

// Shadowbox open video
// function openRTMP(video) {
// 	Shadowbox.open({
// 		player: 'flv',
// 		height: 480,
// 		width: 510,
// 		options: {
// 			flashVars: {
// 				streamer: "rtmp://flash.streamingmediahosting.com/fsdb",
// 				file : video
// 			},
// 			handleOversize: 'none'
// 		}
// 	});
// }

// Open video pop-up window (for screenreaders)
function openVideo(entry_id, video_type) {
  url = "/resources/video?id=" + entry_id + "&t=" + video_type;
  window_name = "fsdb_video_popup";
  window_features = "status=0,toolbar=0,location=0,menubar=0,scrollbars=0,height=520,width=500";

  window.open(url, window_name, window_features);
}

//Wait till the page has loaded
$(document).ready(function(){
	//////////////////////////////////////////////////////
	//INITIALIZE
	//////////////////////////////////////////////////////
	init();
});
