/* 	Blackquartztiles.co.uk
	Author: Marc Costello 2011
*/

$(document).ready(function(){	
	
	// form validation
	jQuery.validator.addMethod("phoneUK", function(phone_number, element) {
		phone_number = phone_number.replace(/\D+/g,'');
		
		if (phone_number.length >= 11) {
			return true;
		}
	}, "Please specify a valid phone number");
	
	$('#contactform1').validate({
		rules: {
			mobile: {
				required: true,
				phoneUK: true
			}
		}
	});
	$('#contactform2').validate({
		rules: {
			mobile: {
				required: true,
				phoneUK: true
			}
		}	
	});
	
	$('.product_img').hover(function() {
		$(this).stop().animate({ borderColor: '#acacac' }, 300);
	},function() {
		$(this).stop().animate({ borderColor: '#CCC' }, 300);	
	});
	
});
