$(document).ready(function() {

//If an article in the middle column doesn't have a photo, this widens the paragraph text to compensate
$("#left-column img").addClass("news-photo");
$(".news-photo").prev("p").addClass("newstext-with-photo");


//give zebra striping to the results table
$('.column-box table').colorize({bgColor:'#ffffff', hiliteColor:'none', hoverColor: 'none', altColor: '#f0efee' });
//there are more options for colours and highlights etc. see the "colorize.js" file for instructions


//This fixes the PNG transparency issue in IE6
$('img[@src$=.png]').ifixpng();
$('#menubar li').ifixpng();



//This is the photo scroller on the homepage
    $(".photo-wrapper").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		auto: 1000,
		speed: 600,
		visible: 5
    });

$(".lightbox").lightbox({fitToScreen: true});


});