$(document).ready(function() {
	$('a[rel*=external]').click( function() {
		window.open(this.href);
		return false;
	});
	if ($('#contact-us').length > 0) {
		$('#contact-us').validate({
			errorContainer: "#contactformErroMsg",
			errorClass: "invalid",
			errorPlacement: function(error, element) {
				//error.appendTo( element.parent("label") );
			},
			debug:false
		});
	};
	$('#gallery a').lightBox({fixedNavigation:true});
	
	$("#menu li").hover(function(){
		$(this).addClass("sfhover");
		$(this).children('a').addClass("sfactive");
	 }, function(){
		$(this).removeClass("sfhover");
		$(this).children('a').removeClass("sfactive");
	 });
});
