$j(document).ready(function () {
	$j('#MapDirections').click(function (e) {
		e.preventDefault();
		$j('#MapDirectionsContent').modal();
	});
	$j('#GetDirections').click(function () {
		var MyPostcode =  $j("input#postcode").val();
		var MyDirections = 'http://maps.google.co.uk/maps?f=q&hl=en&geocode=&q=from:' + MyPostcode +  '+to:5300+lakeside,+SK8+3GP++&sll=53.468675,-2.288525&sspn=0.082258,0.212688&ie=UTF8';
		window.location = MyDirections;
		return false;
		
	});
	
});