
// Startup scripts
$(document).ready(function() {

	// Scan Videos show / hide
	$("#header #videos").hide();
	$("#TopLinks").click(function() {
		if ($("#header #videos").is(":hidden")) {
			$("#header #videos").slideDown("normal");
			$("#TopLinks span:first").text("CLOSE");
		}
		else {
			$("#header #videos").slideUp("normal");
			$("#TopLinks span:first").text("OPEN");
		}
	});
	// End Scan Videos show / hide
	
	
	/*
	$("#header #videos").hide();
	$(".toggleVideos").click(function() {
		if ($("#header #videos").is(":hidden")) {
			$("#header #videos").slideDown("normal");
			$("#header .toggleVideos #TogText").text("CLOSE");
		}
		else {
			$("#header #videos").slideUp("normal");
			$("#header .toggleVideos #TogText").text("OPEN");
		}
	});
	*/

/*	
 	$("#advancedsearch").hide();
	$(".advancedSearch").click(function() {
		if ($("#advancedsearch").is(":hidden")) {
			$("#advancedsearch").fadeIn("normal");
			$("#advancedsearch .searchbox").focus();
		}
		else {
			$("#advancedsearch").fadeOut("normal");
		}
	});
	$("#advancedsearch #close").click(function() {
		$("#advancedsearch").fadeOut("normal");
	});
*/

	// Medical login show / hide
/*	
	$("#boxes #med_pros_login").hide();
	$("#box0 a.link, #box0 a.desc").click(function() {
		if ($("#med_pros_login").is(":hidden")) {
			$("#med_pros_login").fadeIn("normal");
		}
		else {
			$("#med_pros_login").fadeOut("normal");
		}
	});
	$("#boxes #med_pros_login #close").click(function() {
		$("#med_pros_login").fadeOut("normal");
	});
//	$("#boxes #med_pros a.login").blur(function() {
//		$("#med_pros_login").fadeOut("normal");
//	});
	// End Medical login show / hide
*/

	Shadowbox.init({
		players: ["img", "flv"]
	});
	// initialize scrollable videos
	$("div.scrollable").scrollable();

	// quicklinks accordion
	$('#accordion').accordion({ collapsible: true, active: false, event: 'mouseover', autoHeight: false });
	

});