// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){
	
	$(".selection-box").hide();
	$(".selection-box").css("margin-top", "0px");
	
    setTimeout(function(){ $(".selection-box").fadeIn(600) }, 1000 );
	setTimeout(function(){ $(".selection-box").animate( { "margin-top": "50px"}, {duration: 1000, queue: false} ) }, 1000 );
	
	$(".ngg-gallery-thumbnail img").hover(function(){
		$(this).stop().animate({backgroundColor: "#64382F"}, "fast");
	}, function() {
		$(this).stop().animate({backgroundColor: "#FFF"}, "fast");
	});

	$("a").hover(function(){
		$(this).stop().animate({color: "#9A622F"}, "fast");
	}, function() {
		$(this).stop().animate({color: "#64382F"}, "fast");
	});
	
	$("a.equip-back").hover(function(){
		$(this).stop().animate({color: "#E5C9AE"}, "fast");
	}, function() {
		$(this).stop().animate({color: "#FFF"}, "fast");
	});
	
	$("footer a").hover(function(){
		$(this).stop().animate({color: "#FFF"}, "fast");
	}, function() {
		$(this).stop().animate({color: "#C7953C"}, "fast");
	});
	
	$(".nav-main a, .nav-bottom a").hover(function(){
		$(this).stop().animate({color: "#FFF"}, "fast");
	}, function() {
		$(this).stop().animate({color: "#E5C9AE"}, "fast");
	});
	
	$(".selection-box a").hover(function(){
		$(this).stop().animate({color: "#c1a68d"}, "fast");
	}, function() {
		$(this).stop().animate({color: "#E5C9AE"}, "fast");
	});

});

/* optional triggers 

$(window).load(function() {

});

$(window).resize(function() {
	
});

*/
