$(document).ready(function() { 
	/**
	 * Homepage slides
	 */
	$('#slides').cycle({ 
		fx:     'fade', 
		speed:  500, 
		timeout: 3000,
		pager:  '#slides-nav' 
	});

	$('.header .menu li a').hover(
		function() {
			var color = $(this).attr('rel');

			$('#bar').stop().animate({backgroundColor: color});
		},
		function() {
			var color = $('#bar').attr('rel');

			$('#bar').stop().animate({backgroundColor: color});

			//$('#bar').attr('class', $('#bar').attr('rel'));
		}
	);

	$('.inp-check').click(function() {
		if($(this).val() == '') {
			$(this).val('X');
			$('#hidden_' + $(this).attr('rel')).val('1');
		}
		else {
			$(this).val('');
			$('#hidden_' + $(this).attr('rel')).val('0');
		}
		$(this).blur();
	});

	initCufon();

});

function initCufon() {
	Cufon.replace('h1,h2', { fontFamily: 'Frutiger CE 55 Roman', hover: true });
	Cufon.replace('ul.sections li a', { fontFamily: 'Frutiger CE 55 Roman', hover: true });
	Cufon.replace('.home-tiles tr.headings td', { fontFamily: 'Frutiger CE 55 Roman', hover: true });
	Cufon.replace('.contact-form span, .contact-form label', { fontFamily: 'Frutiger CE 55 Roman', hover: true });
 	//Cufon.replace('.cms p', { fontFamily: 'Frutiger CE 55 Roman', hover: true });

}

