﻿$(document).ready(function () {
    $(".portfolio-tiles li a").hover(function () {
        $(this).stop().animate({ backgroundColor: "#f646a5" }, 200);
    }, function () {
        $(this).stop().animate({ backgroundColor: "#333333" }, 400);
    });
    Cufon.replace('h1, h2, h3, h4');
    
    if ($("#slider").length > 0) slideMenu.build('slider', 773, 19, 10, 1);
});
