/*Simple Modal*/

$(document).ready(function () {
	$('#kettle-valley input.kv, #kettle-valley a.kv').click(function (e) {
		e.preventDefault();
		$('.kettle-valley-content').modal();
	});
});

$(document).ready(function () {
	$('#pandosy input.pandosy, #pandosy a.pandosy').click(function (e) {
		e.preventDefault();
		$('.pandosy-content').modal();
	});
});

$(document).ready(function () {
	$('#lakecountry input.lakecountry, #lakecountry a.lakecountry').click(function (e) {
		e.preventDefault();
		$('.lakecountry-content').modal();
	});
});

$(document).ready(function () {
	$('#westside input.westside, #westside a.westside').click(function (e) {
		e.preventDefault();
		$('.westside-content').modal();
	});
});

$(document).ready(function () {
	$('#rutland input.rutland, #rutland a.rutland').click(function (e) {
		e.preventDefault();
		$('.rutland-content').modal();
	});
});

/*JScroll*/

$(function()
{
	$('.scroll-pane').jScrollPane();
});

