
/*sIFR
===========================================*/


    
/*=jquery functions
===========================================*/
  
$(document).ready(function(){

	//prepend span tag
	$(".main-img").prepend("<span></span>");

	//colorbox
	$(".audio-files a[href$='.htm']").colorbox({width:"80%", height:"80%", iframe:true});
	$("a.sign-up, a.contact").colorbox({innerWidth:400});
	$(".video-clips a").colorbox({innerWidth:506, innerHeight:408});

	//external window
	$('a[href^="http://"] , a[href$=".pdf"]')
	.attr({
	target: "_blank" 
	})
	
	//dropdown menu
	$('ul#interior-main-nav, ul#top-nav').superfish({
	        animation:   {opacity:'show'},
			autoArrows:  false,
			delay: 200,
	        speed:       'normal' 
	    });
	
});
