function setBackground(){
	if(screen.height < 1025){
		var bgSrcNormal = document.body.style.backgroundImage;
		var bgSrcSmall = bgSrcNormal.substring(4,bgSrcNormal.length-5) + '_small.jpg';
		document.body.style.backgroundImage = 'url(' + bgSrcSmall +')';
	}
}

$(document).ready(function(){
	var isIE6 = false /*@cc_on || @_jscript_version < 5.7 @*/;
	if (document.all && !window.opera && !window.XMLHttpRequest) {
		isIE6 = true;
	}
	if(!isIE6){
		$(".green .bg").fadeTo(1, 0.7);
		$(".white .bg").fadeTo(1, 0.9);
		$(".white .bg-inactive").fadeTo(1, 0.9);
	}

    $(function() {
        $('a.lightbox').lightBox();
    });	
});