/* BON JOVI */
/* Header Javascript Triggers and Custom Functions
----------------------------------------------------------------------------- */


	$(window).load(function() {

		if (section != "messageboard" && section != "checkout" & section != "thecircletour") {

			mediaLinks();
			dropdown();
			chat();

		} else {
		
		dropdown();
	
		}

	});


/* FUNCTION: CYCLE HEADER MEDIA LINKS
----------------------------------------------------------------------------- */


	function mediaLinks() {

		// SHOW TITLES ON #HEADER HOVER
		$('#header').hover(function() {

			$(this).addClass('hover');
			$('#links a.browse').addClass('hover');

		}, function() {

			$(this).removeClass('hover');
			$('#links a.browse').removeClass('hover');

		});
		
		// CYCLE VIDEO THUMBNAILS
		$('#links div.widget-media.browse ul.clips').cycle({

			fade: true,
			speed: 400,
			timeout: 6000

		});

		// CYCLE PHOTO THUMBNAILS
		$('#links div.widget-photo.browse ul.photos').cycle({

			fx: 'scrollLeft',
			speed: 400,
			timeout: 6000

		});

	}


/* FUNCTION: ADD HOVER CLASS TO BONJOVI.COM DROPDOWN
----------------------------------------------------------------------------- */


	function dropdown() {

		$('#network ul > li:has(ul)').hover(

			function() {

				$(this).addClass('hover');

			},
			function() {

				$(this).removeClass('hover');
				
			}

		)

	}


/* FUNCTION: CHAT POPUP
----------------------------------------------------------------------------- */


	function chat() {

		$('a.launch, li.chat a').click(function() {

			window.open( site_host + $(this).attr('href'),'Chat','width=750,height=550,resizable=0,scrollbars=0,toolbar=0,location=0,directories=0,status=0,menubar=0');
			return false;

		});

	}
