	$(document).ready(function() {
	//animation header --------------------------
	$('#slideshow1').slideshow({timeout: 6000});
	
	//rollover img ------------------------------
/*
		$(".right_img").hover(
	  function () {
		var old_src = $(this).attr("src");
		var new_src = old_src.replace(".jpg","_big.jpg");
		var offset = $(this).offset();
		var this_t = offset.top;
		var this_l = offset.left;
		
		$(this).attr({src:new_src}).removeAttr("width").removeAttr("height").css({position:"absolute",top:this_t,left:this_l});
	  }, 
	  function () {
		var old_src = $(this).attr("src");
		var new_src = old_src.replace("_big.jpg",".jpg");
		$(this).attr({src:new_src}).attr({width:"240",height:"180"}).removeAttr("z-index");
	  }
	);
*/
	});