
function SiteFixes(){
	try{
	//  fix top menu 
	var Menu = document.getElementById('MTbl0');
	Menu.getElementsByTagName('td')[2].style.display="none";
	Menu.getElementsByTagName('a')[0].style.fontWeight="bold";

	//  Fix dropdown 
	var dropdown = document.getElementById('dropdown_shopby_manufacturer');
	dropdown.getElementsByTagName('option')[0].innerHTML="Select Brand";
	
	//  Fix Billing country 
	if(document.getElementById('BillingCountry'))
	{
		
		var dropdown = document.getElementById('BillingCountry');
		if(dropdown.selectedIndex && dropdown.selectedIndex>0)
		{
			//do nothing..
		}
		else
		{
			for(i=0; i<dropdown.length; i++)
			{
				if(dropdown[i].innerHTML == BillingCountry_default_value)
				{
					dropdown[i].selected = true;
					break;
				}
			}
		}
	}
	
	//fix thumbs on right side
	var contentArea = $('#content_area').find('td.colors_background1:eq(1)').next().find('table table:eq(0) tr:eq(3) td').children('a').children('img');
	contentArea.css({'width':'100px','height':'100px'});
//	console.log(contentArea);
	}
	catch (e)
	{
		return;
	}

}

