function setFooterOver(toSet){
	jQuery(toSet).mouseenter(function() {footerOver(toSet+'_label');});
}

function setFooterOut(toSet){
	jQuery(toSet).mouseleave(function() {footerOut(toSet+'_label');});
}

function footerOver(toAnimate){
	jQuery(toAnimate).animate({'marginTop':'0px'}, 100);
	jQuery(toAnimate).mouseleave(function() {});
}

function footerOut(toAnimate){
	jQuery(toAnimate).animate({'marginTop':'10px'}, 100);
}

jQuery(document).ready(function() {
	jQuery('.slideshow').cycle({fx:'cover',easing:'easeout',timeout:5000,speed:300});

	setFooterOver('#home_footer_wedding');
	setFooterOver('#home_footer_corp');

	setFooterOut('#home_footer_wedding');
	setFooterOut('#home_footer_corp');
});
