jQuery.noConflict();


jQuery(function($){
	$(document).ready(function(){
		$("#header").mouseover(function(){
			$("#header").css({cursor:"pointer"});
		}).click(function(){
			document.location = "/";
			return false;
		});
	});  
	
	$.fn.cycle.defaults.speed   = 900;
	$.fn.cycle.defaults.timeout = 6000;

});

