
	// Dropmenu
	$(document).ready(function(){
		$(".droppy").hover(function() {
			$(this).find(".sub_menu").slideToggle(120).show();
		});
	}, function() {
			$(this).find(".sub_menu").slideToggle(120).show();
		});
			

    // VALIDATION CONTACT FORM //
   // $(document).ready(function() {
     //   $("#contactForm").validate();
     //   $("#reply-form").validate();
   // });
	
	// Link moving effect
	$(document).ready(function() {
			$(".listing_moving li a").hover(function() {	//On hover...
				$(this).find("span").stop().animate({ 
					marginLeft: "10" //Find the span tag and move it up 40 pixels
				}, 250);
			} , function() { //On hover out...
				$(this).find("span").stop().animate({
					marginLeft: "0" //Move the span back to its original state (0px)
				}, 250);
			});
	});
	
	// External links "rel"
	function externalLinks() { 
	 if (!document.getElementsByTagName) return; 
	 var anchors = document.getElementsByTagName("a"); 
	 for (var i=0; i<anchors.length; i++) { 
	   var anchor = anchors[i]; 
	   if (anchor.getAttribute("href") && 
		   anchor.getAttribute("rel") == "out") 
		 anchor.target = "_blank"; 
	 } 
	} 
	window.onload = externalLinks;
	
	
