﻿$(function () {
    $('a.wheel-down').localScroll({
        lazy: true,
        reset: false
    });

    
    $('.highslide img').hover(
	   function () {
		   $(this).animate({ opacity: "0.7" }, "fast");
	   },
	   function () {
		   $(this).animate({ opacity: "1" }, "fast");
	   }
	);
	
	$(".nav li a").hover(
	   function () {
	   $(this).animate({color: "#ccc"}, "fast");	   
	   }, 
	   function () {
	   $(this).animate({color: "#D52626"}, "fast");
	   }
    );


	$(".bottom_content").hover(function () {

	    var thumbOver = $(this).find("img").attr("src");

	    $(this).find("a.thumb").css({ 'background': 'url(' + thumbOver + ') no-repeat center bottom' });

	    $(this).find(".crop").stop().fadeTo('slow', 0, function () {
	        $(this).hide()
	    });
	}, function () {

	    $(this).find(".crop").stop().fadeTo('slow', 1).show();
	});


	
});



