// code for controlling super six tabs
function showSuperSix(num) {
  for(var i=1;i<=5;i++){
	document.getElementById('div_'+i).className='left_panel_inactive';  
	document.getElementById('link_'+i).className='tabLink';
  }
  document.getElementById('div_'+num).className='left_panel_active';
  document.getElementById('link_'+num).className='tabLinkActive'; 
}

function searchShop(site_url)
{
	var cat_link = document.getElementById('selShopCategory').value;
	if(document.getElementById('selShopCategory').value == 0)
	{
		alert('please select a category from the list.');
		document.getElementById('selShopCategory').focus();
	}
	else
	{
		window.location = site_url+'/wedding-store/category/'+cat_link+'.html';
	}
}

function getCityPage(val)
{
  window.location.href = 'vendor/city/'+val+'.html';
}