﻿$(document).ready(function () {
    applyCufon();
    centerNav();
});

function centerNav(){
    var w = $('#main_navigation').innerWidth();
    var r = ((970 - (w - 17)) / 2);
    $('#main_navigation').css({'padding-left' : r + 'px'});
}

function applyCufon(){
    Cufon.replace
    ('a',{hover:true})
    ('h1')
    ('h2')
    ('h3')
    ('#footer p')
    ('p.date span.day')
    ('p.date span.month');
}
    
$('fieldset.search a.search_button').bind('click', function(){
    fireSearch();
});

$('fieldset.search input').bind('keypress', function(e) {
    if(e.keyCode==13){
        fireSearch();
    }
});


function fireSearch(btn, event, URL) {
    var searchTerm = $('.search_input').attr("value");
    
    // navigate the url with the value as query string
    load("/pages/common/search.aspx?s=" + searchTerm);
}


    
