/*	File: support.js		*/
/*	By:	  Jeremy Tredway	*/
/*	Ver:  2008-02-27		*/


// onload routines
$(function(){

	// init image map tips
	$('area.load_local').cluetip({
		local: true, 
		hideLocal: true, 
		//positionBy: 'fixed',
		sticky: true, 
		dropShadowSteps: 3,
		showTitle: false,
		width: '250'
	});

	//initialize media player nav
	$('#support_carousel .thickbox').each(function() {
		var video = $(this).attr('href');
		var target = '/video.asp?height=640&width=820&vid=' + video;
		$(this).attr({ href:target });
	});

	//initialize carousel
	$('#support_carousel').jcarousel({
		scroll: 1
	});

});

