$(document).ready(function(){
	$(".hover").hover(function(){
		$(this).css({"z-index":"500"});
	},function(){
		$(this).css({"z-index":"0"});
	});
	$("#imagebar").cycle({
		 delay:  1000, 
   		 speed:  2000,
		 timeout: 10000
	});
});