$(function() {
	// Make all columns the same height
	var height = $('#col-left').height();
	if($('#col-center').height() > height) height = $('#col-center').height();
	if($('#col-right').height() > height) height = $('#col-right').height();
	$('#col-left').css({minHeight : height});
	$('#col-center').css({minHeight : height});
	$('#col-right').css({minHeight : height});
	// Link up specials to enquiry form
	$('.special').click(function() {
		window.location.href = '/enquire-now.php';
	});
});
