$(document).ready(function(){


	$(".next").hover(
		function() {
			$(".prev").show();
			$(".next").show();					
		}, function () {

		}
	);
	
	$(".prev").hover(
		function() {
			$(".prev").show();
			$(".next").show();					
		}, function () {

		}
	);	
	

	$("#slides").hover(
		function() {
			$(".prev").fadeIn(500);
			$(".next").fadeIn(500);			
		}, 
		function() {
			$(".prev").fadeOut(500);
			$(".next").fadeOut(500);
		}
	);
	
	$(".small_box").hover(
		function() {
			$(this).addClass("black_text");
		}, 
		function() {
			$(this).removeClass("black_text");
		}
	);
	

	$(".small_box2").hover(
		function() {
			$(this).addClass("black_text");
		}, 
		function() {
			$(this).removeClass("black_text");
		}
	);

/*	
	$("#prev_area").hover(
		function() {
			$(".prev").fadeIn(500);
		}, 
		function() {
			$(".prev").fadeOut(500);
		}
	);
	
	$("#next_area").hover(
		function() {
			$(".next").fadeIn(500);
		}, 
		function() {
			$(".next").fadeOut(500);
		}
	);	
*/	
	
	
});
