// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
$(document).ready(function(){
	$(".datepicker").datepicker({ dateFormat: 'yy-mm-dd' });
	$('a[rel*=facebox]').facebox();
	$(".more_info").hide();
	$(".show_more_info").click(function(e) {
	  e.preventDefault();
		$(e.target).next(".more_info").toggle("slow");
	});
	$(".wymeditor").wymeditor({ containersHtml: '', classesHtml: '' });
	$('#mycarousel').cycle({ 
		    fx:    'fade',
		    speed: 3000,
		    pause:   2 
	});
});
