/*
 * general javascript calls
 * Copyright (c) 2011 Jaques Candeias <mail@jackingprod.com>
 * Licensed under the GPL license.
 */

// Cufon replace
Cufon.replace ('h1') ('h2') ('h3') ('h4') ('h5') ('h6') ('.white') ('a', {hover: true})
// **

// Countdown   
$(function(){
    var d=new Date();
    var days=31-d.getDate();
    var hours=(24-d.getHours())-1;
    var minutes=(60-d.getMinutes());
    var seconds=(60-d.getSeconds());
    if(hours < 10) hours = '0'+hours;
    if(minutes < 10) minutes = '0'+minutes;
    if(seconds < 10) seconds = '0'+seconds;
    $('#counter').countdown({
        digitWidth: 25,
        digitHeight: 37,
        image: 'template/juice/digits.png',
        startTime: days+':'+hours+':'+minutes+':'+seconds
    });
});
// **
