var ToursPrototype = Class.create();

ToursPrototype.prototype = {
	initialize: function() {
	},
	initCounties: function(country)
	{
		$(country).selected = "selected";
	},
	initCountiesLinks: function(link)
	{
		$$('table.trr_cinfo_tab a.trr_cinfo_a').each(function(s) {
			var newLink = s.href.indexOf('?');
			s.href = link + s.href.substr(newLink,s.href.length);
		});
	},
	initPhotoLinks: function(link)
	{
		$$('table.trr_cinfo_tab a.trr_pg_a').each(function(s) {
			var newLink = s.href.indexOf('?');
			s.href = link + s.href.substr(newLink,s.href.length);
		});
	},
	initMaps: function(link)
	{
		$$('table.trr_maps_tab a.trr_maps_a').each(function(s) {
			var newLink = s.href.indexOf('?');
			s.href = link + s.href.substr(newLink,s.href.length);
		});
	}
}

var Tours = new ToursPrototype();