$(document).ready(function() {

//Headlines cufon replace
Cufon.replace('h1,h2,h3,h4,.price span');

//Footer social icons tittle on mouseover
$('.social li a img').tipsy({ gravity: 's', fade: true });

//PrettyPhoto for zoom
$("a[rel^='prettyPhoto']").prettyPhoto({ theme: 'facebook' });

//About Portfolio image opacity on mouseover
$('.about ul li a img').each(function() {
    $(this).hover(function() {
        $(this).stop().animate({ opacity: "0.1" }, 200);
    },
           function() {
               $(this).stop().animate({ opacity: "1.0" }, 200);

           });
});




});
