$(document).ready(function(){
	//Hover Image Choose Path Left
	$('img.home_path_choice_left_img').hover(function() {
		$(this).attr("src","assets/templates/tides_vs2/images/home/path_choice_left_buy_calendar_hover.jpg");
			}, function() {
		$(this).attr("src","assets/templates/tides_vs2/images/home/path_choice_left_buy_calendar.jpg");
	});
	//Hover Image Choose Path Right
	$('img.home_path_choice_right_img').hover(function() {
		$(this).attr("src","assets/templates/tides_vs2/images/home/path_choice_right_partner_hover.jpg");
			}, function() {
		$(this).attr("src","assets/templates/tides_vs2/images/home/path_choice_right_partner.jpg");
	});
	//Hover View More Organizations
	$('img.home_organizations_view_more').hover(function() {
		$(this).attr("src","assets/templates/tides_vs2/images/home/home_organization_view_button_hover.jpg");
			}, function() {
		$(this).attr("src","assets/templates/tides_vs2/images/home/home_organization_view_button.jpg");
	});
	//Homepage image rotation
    $('.home_organizations_right').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	//Charity Homepage top image rotation
    $('#pictures').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	//Charity Homepage right image rotation
    $('#pictures-side-right').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
});
