$(document).ready(function() {
	$('.image_hover img').hide();
	/*$('.image_hover').mouseover(function() {
		$('.image_hover img').show('slow');
	});
	$('.image_hover').mouseout(function() {
		$('.image_hover img').hide('slow');
	});
	*/
});

/*
image_main
image_hover

$(document).ready(function() {
	$(".program2").hide();
	$('.program2:first').fadeIn('slow');
	$('.program2').hover(
	function(){
		$(this).fadeIn('slow');
	},
		function(){
			var next = ($(this).next().length) ? $(this).next() :$('.imge:first');
			$(this).fadeOut('slow');
			next.fadeIn('slow');
		}
	);
});

$(document).ready(function() {
	$(".program3").hide();
	$('.program3:first').fadeIn('slow');
	$('.program3').hover(
	function(){
		$(this).fadeIn('slow');
	},
		function(){
			var next = ($(this).next().length) ? $(this).next() :$('.imge:first');
			$(this).fadeOut('slow');
			next.fadeIn('slow');
		}
	);
});

$(document).ready(function() {
	$(".program4").hide();
	$('.program4:first').fadeIn('slow');
	$('.program4').hover(
	function(){
		$(this).fadeIn('slow');
	},
		function(){
			var next = ($(this).next().length) ? $(this).next() :$('.imge:first');
			$(this).fadeOut('slow');
			next.fadeIn('slow');
		}
	);
});

$(document).ready(function() {
	$(".program5").hide();
	$('.program5:first').fadeIn('slow');
	$('.program5').hover(
	function(){
		$(this).fadeIn('slow');
	},
		function(){
			var next = ($(this).next().length) ? $(this).next() :$('.imge:first');
			$(this).fadeOut('slow');
			next.fadeIn('slow');
		}
	);
});

$(document).ready(function() {
	$(".program6").hide();
	$('.program6:first').fadeIn('slow');
	$('.program6').hover(
	function(){
		$(this).fadeIn('slow');
	},
		function(){
			var next = ($(this).next().length) ? $(this).next() :$('.imge:first');
			$(this).fadeOut('slow');
			next.fadeIn('slow');
		}
	);
});
*/
