// start shadow box //
Shadowbox.init({
    players:    ["img","html", "flv"]
});

// nav hovers
$(function(){
	$('.nav_holder ul#a li')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 -223px)"}, {duration:700})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:700})
		})
});

// homepage slider
jQuery(window).bind("load", function() {
	jQuery("div#slider1").codaSlider()
	// jQuery("div#slider2").codaSlider()
	// Beware of cross-linking difficulties if using multiple sliders on one page.
});

// Initialize jQuery
$(document).ready(function(){

	// FLASH
	// http://jquery.lukelutman.com/plugins/flash/example-basic.html

		$('.flash_holder').flash({
			src: base_href+'swf/shield02.swf',
			width: 115,
			height: 136
		},
		{
			version: 8
		});

});























