//SWITCH


$(document).ready(function(){

		$("a.switch-thumb").toggle(function(){
			$(this).addClass("swap");
			$("ul.display").fadeOut("fast", function() {
				$(this).fadeIn("fast").addClass("thumb-view");
		});
		}, function () {
			$(this).removeClass("swap");
			$("ul.display").fadeOut("fast", function() {
				$(this).fadeIn("fast").removeClass("thumb-view");
			});
		}); 
	
		});


//SLIDER

$(document).ready(function(){	
	$("#slider").easySlider();
});