// JQuery functions for hiding and showing the modal box
// if IE then do not fade

anim_speed = "normal";

(function($){
	$.fn.modalHide = function() {
		return this.each(function() {
			if($.browser.msie) {
				$(this).hide();
			} else {
				$(this).fadeOut(anim_speed);
			}
		});
	};
})(jQuery);

(function($){
	$.fn.modalShow = function() {
		return this.each(function() {
			if($.browser.msie) {
				$(this).show();
			} else {
				$(this).fadeIn(anim_speed);
			}
		});
	};
})(jQuery);

$(document).ready(function(){
									
	// Add about Flash
	$('#flash').flash({
		swf: 'media/about-fader.swf',
		width: 547,
		height: 163
	});

	$("#view-timetable").click(function(event){
		event.preventDefault();
		$('#timetable-modal-outer').modalShow();
		$('#timetable-modal').modalShow();
	});

	$(".modal-close").click(function(event){
		event.preventDefault();
		$('#timetable-modal-outer').modalHide();
		$('#timetable-modal').modalHide();
	});
	
	$("#timetable-modal-outer").click(function(event){
		event.preventDefault();
		$('#timetable-modal-outer').modalHide();
		$('#timetable-modal').modalHide();
	});

});
