window.addEvent('domready', function(){

	if($('map')){
  		Google.createMap('map', {'zoom': 13, 'controls': {'earth': true}} , function(){
  			var marker = {
                'lat': 51.517272,
                'lng': -0.142389,
                'directions': false,
                'directionsContainer': $('mainContent'),
                'directionsComplete': function(a,b,c,d,e){log(a);log('-');log(b);log('-');log(c);log('-');log(d);log('-');log(e)},
  				'infoWindow': '<b>SBH Radiators Ltd</b><br />Barthorne House<br />Marston<br />Grantham<br />Lincs<br />NG32 2HT<br />Tel: +44 (0) 845 807 1000<br />Fax: +44 (0) 845 807 1001',
  				 				'options': {
  					'center': true
  				}
  			};
  			Google.addMapMarker('map', marker);
  		});
      }

	if($('btnStandard')){
		$('btnStandard').addEvent('click', showTable.pass('Standard'));
		$('btnSquare').addEvent('click', showTable.pass('Square'));
		if(location.hash && location.hash.indexOf('square') > -1)
			$('btnSquare').fireEvent('click');
	}
});

function showTable(tbl){
	$$('.productViewerBackground')[0].getElements('img').each(function(img){
		img.setStyle('display', img.id == 'img'+tbl ? 'block' : 'none'); 
	});
	$$('.squareButtons')[0].getElements('img').each(function(img){
		img.src = img.src.replace(img.id == 'btn'+tbl ? '_off' : '_on', img.id == 'btn'+tbl ? '_on' : '_off');
	});
	$$('.stats').each(function(table){
		table.setStyle('display', table.id == 'tbl'+tbl ? 'block' : 'none');
	});
	$$('.texts').each(function(txts){
		txts.setStyle('display', txts.id == 'txt'+tbl ? 'inline' : 'none');
	});
}