var Product={
	init: function() {
		$$('.product_thumbs').each(function(el){
			Event.observe(el, 'click', Product.thumb_click);
		});
	},
	thumb_click: function(e){
		el = Event.element(e);
		$('product_main_pic').src=el.up('a').getAttribute('href')
		Event.stop(e);
	}
}

OnReady.register(Product.init);

function furl(obj) {
	var sindex = obj.down('select').selectedIndex;
	var mid=obj.down('select').options[sindex].value;
	document.location='/products/troubleshoot/'+mid+'/';
	return false;
}

function furl_howto(obj) {
	var sindex = $('select_prods').selectedIndex;
	var mid = $('select_prods').options[sindex].value;
	document.location='/products/troubleshoot/'+mid+'/';
	return false;
}