search_focus= new Image
search_focus.src = "../../Images/buttons/billiard-home-search_2.gif"
search_notfocus= new Image
search_notfocus.src = "../../Images/buttons/billiard-home-search_1.gif"

news_focus= new Image
news_focus.src = "../../Images/buttons/billiard-home-news_2.gif"
news_notfocus= new Image
news_notfocus.src = "../../Images/buttons/billiard-home-news_1.gif"

tournament_focus= new Image
tournament_focus.src = "../../Images/buttons/billiard-home-tournament_2.gif"
tournament_notfocus= new Image
tournament_notfocus.src = "../../Images/buttons/billiard-home-tournament_1.gif"

tvschedule_focus= new Image
tvschedule_focus.src = "../../Images/buttons/billiard-home-tv-schedule_2.gif"
tvschedule_notfocus= new Image
tvschedule_notfocus.src = "../../Images/buttons/billiard-home-tv-schedule_1.gif"

photo_gallery_focus= new Image
photo_gallery_focus.src = "../../Images/buttons/billiard-home-photo-gallery_2.gif"
photo_gallery_notfocus= new Image
photo_gallery_notfocus.src = "../../Images/buttons/billiard-home-photo-gallery_1.gif"


online_prescription_images=new Array(
	 				"../../Images/billiard-third-party/billiard-resource-store-ad01.gif", 
					"../../Images/billiard-third-party/billiard-resource-store-ad02.gif", 
					"../../Images/billiard-third-party/billiard-resource-store-ad03.gif",
					"../../Images/billiard-third-party/billiard-resource-store-ad04.gif")

thisAd=0
adCnt=online_prescription_images.length

function rotate_rx_ad()
{
	if (document.images)
	{
		thisAd++
		if (thisAd == adCnt)
		{
			thisAd=0
		}	
		document.adRXBanner.src = online_prescription_images[thisAd]
		setTimeout("rotate_rx_ad()",1*1000)
	}
}

function roll_over_navs(tab_name, focus_num)
{
	if (focus_num==2)
	{
		document.getElementById(tab_name).src = eval(tab_name + "_focus.src")
	}
	else if (focus_num==1)
	{
		document.getElementById(tab_name).src = eval(tab_name + "_notfocus.src")
	}
	else
	{
		
	}
	
}

function redirect_home()
{
	window.location=('http://www.billiard-resource.com/billiardresource/')


}

