// JavaScript Document

//jQuery.noConflict();

$j = jQuery.noConflict();

$j(document).ready(function(){
	

	Width = "171px";
	Height = "215px";

	$j("ul#dates img").hover(
		  function () {
			$j(this).css({'position' : 'absolute', 'z-index' : '1000'});
			$j(this).stop().animate({ 
				width: "205px",	
				height: "258px"
			}, 500 );
		  }, 
		  
		  function () {
			$j(this).css({'position' : 'static', 'z-index' : '10'});
			$j(this).stop().animate({ 
				width: Width,
				height: Height
			}, 500 );
		  }
		);
	
	
		$j("ul#news img").hover(
		  function () {
			$j(this).css({'position' : 'absolute', 'z-index' : '1000'});
			$j(this).stop().animate({ 
				width: "205px",	
				height: "258px"
			}, 500 );
		  }, 
		  
		  function () {
			$j(this).css({'position' : 'static', 'z-index' : '10'});
			$j(this).stop().animate({ 
				width: Width,
				height: Height
			}, 500 );
		  }
		);
		
		$j("ul#guestbook img").hover(
		  function () {
			$j(this).css({'position' : 'absolute', 'z-index' : '1000'});
			$j(this).stop().animate({ 
				width: "205px",	
				height: "258px"
			}, 500 );
		  }, 
		  
		  function () {
			$j(this).css({'position' : 'static', 'z-index' : '10'});
			$j(this).stop().animate({ 
				width: "128px",
				height: "160px"
			}, 500 );
		  }
		);


	$j("ul#hat img").hover(
		  function () {
			$j(this).css({'position' : 'absolute', 'z-index' : '1000'});
			$j(this).stop().animate({ 
				width: "205px",	
				height: "258px"
			}, 500 );
		  }, 
		  
		  function () {
			$j(this).css({'position' : 'static', 'z-index' : '10'});
			$j(this).stop().animate({ 
				width: Width,
				height: Height
			}, 500 );
		  }
		);
	
	$j("ul#phone img").hover(
		  function () {
			$j(this).css({'position' : 'absolute', 'z-index' : '1000'});
			$j(this).stop().animate({ 
				width: "205px",	
				height: "258px"
			}, 500 );
		  }, 
		  
		  function () {
			$j(this).css({'position' : 'static', 'z-index' : '10'});
			$j(this).stop().animate({ 
				width: Width,
				height: Height
			}, 500 );
		  }
		);
		
		$j("ul#camera img").hover(
		  function () {
			$j(this).css({'position' : 'absolute', 'z-index' : '1000'});
			$j(this).stop().animate({ 
				width: "205px",	
				height: "258px"
			}, 500 );
		  }, 
		  
		  function () {
			$j(this).css({'position' : 'static', 'z-index' : '10'});
			$j(this).stop().animate({ 
				width: Width,
				height: Height
			}, 500 );
		  }
		);
		
		$j("ul#phono img").hover(
		  function () {
			$j(this).css({'position' : 'absolute', 'z-index' : '1000'});
			$j(this).stop().animate({ 
				width: "205px",	
				height: "258px"
			}, 500 );
		  }, 
		  
		  function () {
			$j(this).css({'position' : 'static', 'z-index' : '10'});
			$j(this).stop().animate({ 
				width: Width,
				height: Height
			}, 500 );
		  }
		);
//	       $("div").hide();

});

