/*
Collards javascript

Designed and built by Jonathan Brain
http://jonathanbrain.com
*/

$(document).ready( function() {
	//map buttons
	bindButtons();
});

function bindButtons() {
	$('#button-kingston').click( function() {
		$('#map iframe').attr({ src: this.href });
		return false;
	});
	
	$('#button-horsham').click( function() {
		$('#map iframe').attr({ src: this.href });
		return false;
	});
}
