// JavaScript Document

		$(document).ready(function(){
				$(".news").fadeTo("fast", 0.5);
				$(".news").hover(function(){
						$(this).fadeTo("slow", 1.0);
					},function(){
						$(this).fadeTo("fast", 0.5);
				});
				
				$(".img_fade").fadeTo("fast", 0.5);
				$(".img_fade").hover(function(){
						$(this).fadeTo("slow", 1.0);
					},function(){
						$(this).fadeTo("fast", 0.5);
				});
			});
		
		
		
		
		
			$(
				function()
				{
					// set up rollover
					$("img.rollover").hover(
						function()
						{
							this.src = this.src.replace(".jpg","_roll.jpg");
						},
						function()
						{
							this.src = this.src.replace("_roll.jpg",".jpg");
						}
					);
				}
			)
