// NAVIGATION

$(function () { 

	SW.menus();
	SW.images();

});

var SW = {
	
	menus : function(){
		
		var __topLinks = $(".navigation li.menu");
		var __menus = $(".navigation li.menu ul");
		
		__topLinks.bind("mouseenter", function(){

			$(this).addClass("selected");
			$(this).find("ul").show();
			
		});
		
		__topLinks.bind("mouseleave", function(){
			
			$(this).removeClass("selected");
			__menus.hide();
			
		});
		
	},
	
	
	images : function(){
		
		var __thumbs = $("#images a.thumb");
		var __targ = $("#images .image img");
		
		__thumbs.bind("mouseenter", function(){
			
   var __url = $(this).attr("href");
   if (__url != "" && __url != location.href)
			 __targ.attr("src",__url);
			return false;
			
		});
  
  __thumbs.bind("click", function(e){
			
   e.preventDefault();
			return false;
			
		});
		
	}
	
	
}
