//Cycle plugin setting
$(document).ready(function() {
    $('#slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
});
//Set Cofon
Cufon.replace('h1');
Cufon.replace('h2', { hover: true, hoverables: { h2: true } });
Cufon.replace('h3', { hover: true, hoverables: { h3: true } });
Cufon.replace('h4', { hover: true, hoverables: { h4: true } });
//image link function
$(document).ready(function() {
	$('a.imgLink img').hover(function(){
		$(this).fadeTo('slow', 1);
	}, function() {
		$(this).fadeTo('fast', 1);
	});
});
//validation function
jQuery(document).ready(function($){
	$("#commentForm").validate();
	$("#contactForm").validate();
});