$(function(){
   $('.archive div').hide();
   
   $('#newsticker').newsticker();

   $('.clickable:has(a[href])').click(function()
    {
	    var el = $('a:not([href$=.swf])', this).eq(0);
	    var location = el.attr('href');
	    var target = el.attr('target');

	    if (location !== undefined)
	    {
		if(target){
		    window.open(location, '_blank');
		}else{
		    window.location = location;
		}
	    }

	    return false;

    }).bind('mouseenter mouseleave', function()
    {
	    var title = $('a:not([href$=.swf])', this).eq(0).attr('title');

	    $(this).toggleClass('rollover').attr('title', title);
    });

    // facebook share
    $('#fb_share').click(function() {
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(location.href)+'&t='+encodeURIComponent(document.title),'sharer','toolbar=0,status=0,width=626,height=436');
	return false;
    });

	/** Language selector */
	if ($(window).width() > 1024)
	{
		$('#language-bar').css({ left: '1000px' });
	}
});
