// JavaScript Document
$(document).ready(function(){
	$('.main-tab').hoverIntent(
	function(){ 
		
		$(this).removeClass("main-tab-background"); 
		$(this).addClass("main-tab-background-hover"); 
		$(this).children('.main-dropdown-menu').slideDown();
	
	},
	function(){ 
		
		$(this).removeClass("main-tab-background-hover"); 
		$(this).addClass("main-tab-background"); 
		$(this).children('.main-dropdown-menu').slideUp();
	
	});

	$('.menu-item').hover(
	function(){ 
	
		$(this).addClass("menu-item-hover"); 
		$(this).children('.fly-out').show(100);
	
	},
	function(){ 
		$(this).removeClass("menu-item-hover"); 
		$(this).children('.fly-out').hide(100);	
	
	});
	
	$('#about, #events').hover(
	function(){
		
		$(this).css({'background-color':'#24a3dd'});
		$(this).children('p').css({'color':'#000000'});
	},
	function(){
		
		$('#about, #events').css({'background-color':'#121212'});
		$('#about p, #events p').css({'color':'#24a3dd'});

	});

	
	$(function() {
	    $('a[rel*=external]').click( function() {
	        window.open(this.href);
	        return false;
	    });
	});	



	var flashvars = {videoSrc: "http://www.zimpipes.com/fdoh/tobaccofreeflorida/videos/FDOH-QL-Eng-01r.flv"};
	var params = {menu: "false", allowScriptAccess: "always", wmode: "transparent" };
	
	swfobject.embedSWF("assets/flash/videoplayer.prt1.swf", "vid", "489", "318", "10.0.0","expressInstall.swf", flashvars,  params);




	
});
