


// Send page 
function openSendpage(lang)
{
  //alert(encodeURI(document.title));
  var url = document.location.toString().replace(/\#$/, "");
  window.open('/' + lang + '/sendpage.html?url=' + url + "&title=" + encodeURI(document.title),'mail','scrollbars,toolbar=no,directories=no,width=470,height=410');
}



// Rot HL
jQuery(document).ready(function(){
  if(jQuery("#home_headlines").size())
  { 
    jQuery('#home_headlines')
    .before('<div id="rotating_headlines_nav"></div>')
    .cycle({ 
      fx:       'uncover', 
      sync:     1,
      speed:    , 
      timeout:  ,
      height:   'px', 
      pager:    '#rotating_headlines_nav',
      pause:    1,
      pauseOnPagerHover:1
    });
    //,
    //after:    resizeHeadlinesHack
  }
});

function resizeHeadlinesHack(currSlideElement, nextSlideElement, options, forwardFlag)
{
  var width = "px";
  
  jQuery('#home_headlines').css("width", width);
  jQuery(nextSlideElement).css("width", width);
}

