/* created by jdg */
/******************/

$(function() {

	// Billboard
	//$('#billboard').before('<div id="nav">').cycle({
	//	fx: 'fade',
	//	speed: 500,
	//	timeout: 0,
	//	pager: '#nav'
	//});
	// /Billboard
	
	// Billboard
		$('#billboard').coinslider({ 
			width: 948,
			navigation: true,
			hoverPause: true,
			spw: 3,
			sph: 3,
			opacity: 1,
			sDelay: 30,
			effect: 'straight',
			titleSpeed: 0,
			delay: 4000
		});
	// /Billboard
	
	// Menu dropdown
  $("#menu > li").hover(function() {
		$(this).addClass("active");
		$(this).parents("ul").addClass("active");
  }, function() {
		$(this).removeClass("active");
		$(this).parents("ul").removeClass("active");
  });
	// /Menu dropdown		
});
