$(document).ready(function() { 
	$("#slider").sudoSlider({
		speed:'1200',
		pause: '4000',
		numeric:false,
		numericText:[' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '],
		prevNext:false,
		auto:true
	});
	$("#quotes").sudoSlider({
		speed:'1200',
		pause: '4500',
		numeric:false,
		numericText:[' ',' ',' ',' ',' ',' ',' ',' ',' ',' ',' '],
		prevNext:false,
		fade: true,
		auto:true
	});
	

	if ($.browser.msie && $.browser.version < 9) {
		$(".menuitem > .menuimage").css({"opacity": "0","top": "-50px"});
	}
	else {
		$(".menuitem > .menuimage").animate({"opacity": "0","top": "-50px"});
		$(".menuitem").hover(
		function() {
			$(this).children('.menuimage').animate({"opacity": "1","top": "0px"}, "fast");
		},
		function() {
			$(this).children('.menuimage').animate({"opacity": "0","top": "-50px"}, "fast");
		});
	}

	$(".button").hover(
	function() {
		$(this).stop().animate({"opacity": "0.75","margin-left": "10px"}, "slow");
	},
	function() {
		$(this).stop().animate({"opacity": "1","margin-left": "0px"}, "slow");
	});

	$(".button_icon").hover(
	function() {
		$(this).stop().animate({"opacity": "0.5","margin-top": "0px"}, "slow");
	},
	function() {
		$(this).stop().animate({"opacity": "1","margin-top": "0px"}, "slow");
	});
	
	Cufon.replace('h1', {
		color: '-linear-gradient(#cb1e24, #94161a)',
		textShadow: '1px 1px 1px #eaeaea'
	});
	Cufon.replace('h2', {
		color: '-linear-gradient(#5d5d5d, #333)',
		textShadow: '1px 1px 1px #eaeaea'
	});
	Cufon.replace('.menulink', {
		textShadow: '1px 1px 1px #000'
	});
}); 

