function kHomeSlideshow() {
	$('#slideshow-items').cycle({
		fx: 'fade',
		speed: 1500,
		timeout: 6000,
		pager: '#slideshow-nav', 
		pauseOnPagerHover: true
	});
}

function kVoteSlideshow() {
	$('#vote-slideshow').cycle({
		fx: 'fade',
		speed: 1200,
		timeout: 5000,
		random: 1
	});
}

$(document).ready(function(){
	kHomeSlideshow();
	kVoteSlideshow();
	$('#section-header-menu > .section-holder').hover(function() {
		$(this).css('height','140px');
		$('#section-header-menu').animate({
			height: '140px'
		},100, function() {
			$('#section-header-menu > .section-holder > #submenu').show(0);
		});
	},function(){
		$(this).css('height','75px');
		$('#section-header-menu > .section-holder > #submenu').hide(0);
		$('#section-header-menu').animate({height:'75px'},50,function(){$('#section-header-menu > .section-holder > #submenu').hide(0);});
	});

	$('input#hform-email-EN').example('Email Address');
	$('input#hform-postal-EN').example('Postal Code');
	$('input#hform-email-FR').example('Courriel');
	$('input#hform-postal-FR').example('Code postal');

	$('#section-header-menu > .section-holder > ul > li > a#read, #textsize a').click(function(event){
		event.preventDefault();
	});
	
	$('#textsize a').textresizer({
		target: '.scaledtext, .404 p',
		type: 'cssClass',
		sizes: ['tsmall','tmedium','tlarge'],
		selectedIndex: 1
	});

	$('#textsize-endorsements a').textresizer({
		target: '.endorsements > table',
		type: 'cssClass',
		sizes: ['tesmall','temedium','telarge'],
		selectedIndex: 1
	});
});
