// JavaScript Document
<!--
$(document).ready(function(){ 
		   
   
   $(".topImgs").hover( // jQuery v1.4.2
	function() {
		this.src = this.src.replace("_f1","_f2");
   }, 
   function(){
		this.src = this.src.replace("_f2","_f1");
   });
   

	$("#topButtons a").hover(function(){ // jQuery v1.4.2
			$(this).children("span").fadeOut();
		}, function(){
			$(this).children("span").fadeIn();
		});
	
	
	$(".homePageCenterLeftSection").hover(function(){ // jQuery v1.4.2
		$(this).children('.homePageCenterLeftInfo').slideDown();
	},function(){
		$(this).children('.homePageCenterLeftInfo').slideUp();
		}
	);
	
	//$('#homePageCycle').cycle({
	//	timeout: 3000,
	//	pause: 1,		
	//});
   
 });
-->