function submitSelectBox()
{
	if(document.getElementById('Hot Pick eateries').selected)
	{
		document.location.href = url + "popular_page.html";
	}
	else if(document.getElementById('Newly added eateries').selected)
	{
		document.location.href = url + "latest_page.html";
	}
	else if(document.getElementById('Members').selected)
	{
		document.location.href = url + "profile_listing_page.html";
	}
	else if(document.getElementById('Blog').selected)
	{
		document.location.href = url + "recommendations/publicLists.html";
	}
	else if(document.getElementById('Answer').selected)
	{
		document.location.href = url + "answers.html";
	}
	else if(document.getElementById('Customer').selected)
	{
		document.location.href = url + "upload_listing_page/customer_list.html";
	}
	else
	{
		return false;
	}
}

function frontImage(fnd,venue)
{
	if(document.getElementById(fnd-1).innerHTML == '<div class="catLoading"><img id="proc_image" src="'+url+'img/ajax-loader.gif" title="processing"></div>' || document.getElementById(fnd-1).innerHTML == '<DIV class=catLoading><IMG id=proc_image title=processing src="'+url+'img/ajax-loader.gif"></DIV>' || document.getElementById(fnd-1).innerHTML == '<DIV class="catLoading"><IMG id="proc_image" src="'+url+'img/ajax-loader.gif" title="processing"></DIV>')
	{
		tng = '';
		tng += fnd-1;
		new ajax(url + 'front_page/scrollImage/' + fnd + '/' + venue, {update: tng});
	}
}