$(document).ready(function(){
	$('a').tipTip();
	
	var $bgc = $('body').hasClass('cv');
	
	var $bgi = '';
	var $bgg = '';
	
	if($bgc)
	{
		$bgi = "images/logo_mask_cv.png";
		$bgg = "url('images/gradient_cv.jpg') no-repeat";
	}
	else
	{
		$bgi = "images/logo_mask.png";
		$bgg = "url('images/gradient.jpg') no-repeat";
	}
		
	$("#logo_wrapper").livingElements($bgi, {
        background: $bgg,
        easing: 'linear',
        startOnLoad: true,
        preAnimationStartOpacity: 1,
        mainAnimationFade: false,
        scrollDirection: 'horizontal',
        mainAnimationDuration: 3000,
        mainAnimationStartBackgroundPositionX: 0,
        mainAnimationEndBackgroundPositionX: -1044,
        postAnimationEndOpacity: 1
    });
    
    $('ul > li:odd').css('color', 'rgba(255,255,255,.6)');
});
