  var $j = jQuery.noConflict();

$j(document).ready(function(){
	$j('img.xfire_img').mouseInfo($j('.xfire_info'));
	$j('#wrap3').cycle({
		fx: 'scrollDown',
		timeout: 5000});
	
	TICKER.addOption('nation',{START_HOUR:18,ALARM_MIN:10,END_HOUR:20,msgID:'tickerMSG'});
	TICKER.countDown('nation');

});

$j.fn.mouseInfo = function(note)
{//makes info show up right next to mouse cursor when hovering over this.
	var noteC = note.clone();
	$j('body').append(noteC);
	noteC.css('position',"absolute")
	    .hide();
	this.mousemove(function(e){
			noteC.show().css('top',e.pageY+20+"px").css('left',e.pageX-20-note.width()+"px");
	});
	this.mouseout(function(){noteC.hide();});
	
}
