$(document).ready(function() {
	
	// Disable browser context menu on slides
	$('.slides').mousedown(function(event) {
		switch (event.which) {
			case 3:
				// $(this).bind('contextmenu', function() { return false; });
				// break;
			default:
				break;
		}
	})

	$("#home_resize img").jmc_resizr({
		cropType: 'full',
		parentElement: $('#main'),
		binding: {
			horizontal: 'center',
			vertical: 'top'
		},
		addOffset: {vertical: -180, horizontal: 0}
	});
});
