Cufon.replace('#logo a,#logo a span,h1,h2,h3,h4,#top-phone,.menu a,.call2button,.af-header,#top-email,label,.action span', {fontFamily: 'Comfortaa'} );

var $ = jQuery.noConflict();

$(document).ready(function() {
	
		
		$('.pgallery li a').mouseenter(function(e) {
            $(this).children('img').animate(200);
            $(this).children('span').fadeIn(300);
        }).mouseleave(function(e) {
            $(this).children('img').animate(200);
            $(this).children('span').fadeOut(300);
        });
		
		
		$('.ntip').tipsy({gravity: 's', fade:true});
		$('.stip').tipsy({gravity: 'n', fade:true});
		$('.etip').tipsy({gravity: 'w', fade:true});
		$('.wtip').tipsy({gravity: 'e', fade:true});
		
		
		$('#pgallery li a').mouseenter(function(e) {
            $(this).children('img').animate(300);
            $(this).children('span').fadeIn(400);
        }).mouseleave(function(e) {
            $(this).children('img').animate(300);
            $(this).children('span').fadeOut(400);
        });
			
		$("a[rel^='prettyPhoto']").prettyPhoto({
			animation_speed: 'normal',
			theme: 'dark_rounded'
			});
		//Sliding Boxes on Homepage	
		$('.boxgrid.peek').hover(function(){  
        $(".cover", this).stop().animate({top:'90px'},{queue:false,duration:160});  
    }, function() {  
        $(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});  
    });	
			
});


