//Cufon.replace('#topline .contact, #news h4, #boxes h4, #rotator .reserve span a.order, #offer-list ul li span a, #boxes .cnt .input-add, #boxes .cnt .input-remove, #content .further, #sub-menu ul li span a, #form .input-submit, #contact .input-submit, #content a.pdf, #content a.book, #list li a.more', { fontFamily: 'Helvetica Roman' });
//Cufon.replace('#topmenu li span, #rotator ul li .reserve h4', { fontFamily: 'Myriad Pro' });

$('#rotator ul').cycle({ 
    fx:     'fade', 
    speed:  '1000', 
    timeout: 6000, 
    next:   '.rnext', 
    prev:   '.rprev',
	pager: '.rpager'
});

$('#banner ul').cycle({ 
    fx:     'fade', 
    speed:  '1000', 
    timeout: 4000
});

$(document).ready(function() {
	
	$("#top-menu ul li:first-child").addClass("remove");		
	$("#footer ul li:first-child").addClass("remove");	
	$("#sub-left ul li:last-child a").addClass("remove");	
	
	$("#prods ul li").mouseover(function(){
		$(this).find(".links").addClass("visible");
	}).mouseout(function(){
		$(".links").removeClass("visible");
	});
		
	$("#main .prods li a").mouseover(function(){
		$(this).parent().find("span").addClass("yellow");
	}).mouseout(function(){
		$(this).parent().find("span").removeClass("yellow");
	});
	
	$("#gallery td img.grey").hover(
		function() {$(this).stop().animate({"opacity": "0"}, "slow");},
		function() {$(this).stop().animate({"opacity": "1"}, "slow");}
	);

	$('.rnext,.rprev').click(function() {
		$('#rotator ul').cycle('pause');
	});
});
