$(document).ready(function() {
	var tabContainers = $("div.gallery > div");
	tabContainers.hide().filter(':first').show();
	
	$("div.gallery ul.galleryNav a").click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).fadeIn(500);
		$("div.gallery ul.galleryNav a").removeClass("selected");
		$(this).addClass("selected");
		return false;
	}).filter(":first").click();
});

$(document).ready(function() {
	$(".galleryNav").mousemove(function(e){
	//console.log(e.pageX);
	
		if(e.pageX > 1100 && e.pageX < 1270){
			$(".galleryNav").animate({marginLeft:"-60px"},{queue: false, duration: 450});
		}
		
		if(e.pageX > 470 && e.pageX < 500){
			$(".galleryNav").animate({marginLeft:"10px"},{queue: false, duration: 450});
		}
	});
});
