$(function(){
	
	if($.browser.msie && $.browser.version=='6.0'){
		$('#content-left').css({'margin-left':'5px'});
		$('#content-left').css({'margin-right':'10px'});
		$('#content-right-home').css({'margin-left':'5px'});
	}
	
	$('.image_cycle img').css({'display':'none'});
	
	
	
	
	fade_speed = 1000;
	fade_timeout = 5000;
	
	$('#award_cycle').cycle({ 
		fx:    'fade', 
	    speed:  fade_speed,
	    timeout:  4000,
	    delay:	0
	});

	
	$('#derwent_fade1').cycle({ 
	    fx:    'fade', 
	    speed:  fade_speed,
	    timeout:  fade_timeout,  
	    delay:	0	
	});
	
	$('#derwent_fade2').cycle({ 
		fx:    'fade', 
		speed:  fade_speed,
		timeout:  fade_timeout,
		delay:	500 	
	});
	
	$('#derwent_fade3').cycle({ 
		fx:		'fade', 
		speed:	fade_speed,
		timeout:fade_timeout, 
		delay:	1000	
	});
	
	$('#derwent_fade4').cycle({ 
		fx:		'fade', 
		speed:	fade_speed,
		timeout:fade_timeout, 
		delay:	1000
		});
	
	$('#lnkPrivPol').click(function(){
		$('#privPol').css({'display':'block','opacity':'0'});
		$('#privPol').animate({opacity:1.0},300);
		$(this).blur();
		
		if($('#content-left').css('height') > $('#content-right').css('height')){
			$('#content-right').css({'height':$('#content-left').css('height')});
		}else{
			$('#content-left').css({'height':$('#content-right').css('height')});
		}
		
		if($('#content-left-news').css('height') > $('#content-right-news').css('height')){
			$('#content-right-news').css({'height':$('#content-left-news').css('height')});
		}else{
			$('#content-left-news').css({'height':$('#content-right-news').css('height')});
		}
		
		return false;
	});
	
	$('#lnkTell').click(function(){
		$('#tell_friend').css({'display':'block','opacity':'0'});
		$('#tell_friend').animate({opacity:1.0},300);
		$(this).blur();
		
		if($('#content-left').css('height') > $('#content-right').css('height')){
			$('#content-right').css({'height':$('#content-left').css('height')});
		}else{
			$('#content-left').css({'height':$('#content-right').css('height')});
		}
		
		if($('#content-left-news').css('height') > $('#content-right-news').css('height')){
			$('#content-right-news').css({'height':$('#content-left-news').css('height')});
		}else{
			$('#content-left-news').css({'height':$('#content-right-news').css('height')});
		}
		
		return false;
	});
	
	
	$('#text_resize span.up').click(function(){
		increaseFontSize();
		
		return false;
	});
	$('#text_resize span.down').click(function(){
		decreaseFontSize();
		
		return false;
	});
	
	$('#text_resize').css({'opacity':'0.4','filter':'alpha(opacity=40)'});
	
	if($('#content-left').css('height') > $('#content-right').css('height')){
		$('#content-right').css({'height':$('#content-left').css('height')});
	}else{
		$('#content-left').css({'height':$('#content-right').css('height')});
	}
	
	if($('#content-left-news').css('height') > $('#content-right-news').css('height')){
		$('#content-right-news').css({'height':$('#content-left-news').css('height')});
	}else{
		$('#content-left-news').css({'height':$('#content-right-news').css('height')});
	}
	
	$('a.pdf').click(function(){
		$(this).attr('target', '_blank');
	});
	
	
	
	
});