$(document).ready(function(){

//Toggle content
$("a.toggleLink").click(function(){$("div.toggleThis").slideToggle("slow")});

//Date Picker
$('input.datepicker').datePicker();


//If browser is IE, disable BackgroundImageCache
if (jQuery.browser.msie){
    try{
      document.execCommand(
        "BackgroundImageCache",
        false, 
        true);
    } catch(err){}
}


//Testimonials
$("#news").newsTicker(20000);


});