$(document).ready(function()
{

	$('#btnfaq').click(function(evt)
	{	
		evt.preventDefault();
		$.fn.colorbox({href:'/info/faq/', width:"888", height:"80%"}); 
	}
	);

		// Preload all rollovers
		$("a.rollover img").each(function() {
			$("<img>").attr("src", $(this).attr("src").replace(/.png$/ig,"_over.png"));
		});
		
		// Navigation rollovers
		$("a.rollover img").mouseover(function(){
			$(this).attr("src", $(this).attr("src").replace(/.png$/ig,"_over.png"));
		});
		$("a.rollover img").mouseout(function(){
			$(this).attr("src", $(this).attr("src").replace(/_over.png$/ig,".png"));
		//	$(this).attr("src", $(this).attr("src").replace(/.png$/ig,"_over.png"));
		});
}
);