$(document).ready(function () {

	
	

	//jquery cycle function for banners
		//home top
		$('#fade').after('<div id="controls"></div>').cycle({
			pager: '#controls',
			pauseOnPagerHover:true,
			pagerAnchorBuilder: paginate,
			speed: 1000, //speed of transition
			timeout: 10000 //duration of slide
		});
		
		//home bottom
		$('#bottomBanners').cycle({
			//speed: 1000, //speed of transition
			timeout: 10250 //duration of slide
		});
		
		
		
		
			function paginate(ind, el)
			{
				 return '<a href=""></a>';
			}
	
	//tabs
		$("ul.tabs").tabs("div.panes > div");
		
	//accordion
	
	  $( "#home-accordion" ).accordion({
			collapsible: false,
			autoHeight:false,
			active: 1
		});
 
 
		 //shoretel video for homepage
	 	 jwplayer("homeVideo").setup({ flashplayer: "/wp-content/themes/dcn/js/libs/player.swf", 
		 file: "/wp-content/themes/dcn/media/shoretel_vid.mp4",
		  height: 217,
		   width: 310,
		   stretching:"fill",
		   'image': '/wp-content/themes/dcn/images/home/home_vid_image3.jpg'
			 });	
	
}); //end on ready


