// <![CDATA[
$(document).ready(function() {
	// Disable right-click on images
	$('img').bind('contextmenu', function() {
		return false;
	});

	// Fonts in IE6 (Because selectors aren't supported in CSS)
	if ($.browser.msie && $.browser.version <= 6) {
  		$('#content > h1, #content > h2, .bullets > h2, #content > form > h2').addClass('journalFont').addClass('fontLarge');
		$('#content > #articles > h1, #subSection > h1, #subSectionDark > h1').addClass('journalFont').addClass('fontMedium');
	}

	// Hide main form button
	$('#formButton').hide();

	// Image Swaps
	$('#imgSwap a[rel=swap]').click(function() {
		// Replace "small" with "main" for CMS pages.
		var thumbSrc = $(this).children('img').attr('src').replace('-thumb', '-large').replace('small', 'main');
		if($('#imgMain').attr('src') != thumbSrc) {
			$('#imgMain').fadeOut('slow', function() {
				// Preload the image before making the switch
				var img = new Image;
				img.onload = function() {
					$('#imgMain').attr('src', thumbSrc).fadeIn('slow');
				}
				img.src = thumbSrc;
			});
		}

		return false;
	});

    // TV Advert Link
    $('a.tvAdvert').fancybox({
            type: 'iframe',
            centerOnScroll: true,
            overlayOpacity: 0.8
    });

    //NIVO Slider
    $('#slider').nivoSlider({
        effect:'fade',
        directionNav:false,
        pauseOnHover:false,
        keyboardNav:false
    });

    //Active hyperlinks
    $('#sidebar ul ul li a').each(function(){
        if(window.location.pathname == $(this).attr('href')) {
            $(this).addClass('active');
            return false;
        }
    });
});
// ]]>
