$(document).ready(function(){	

	$("a.zoom").fancybox();
	$("a.zoom1").fancybox({
		'overlayOpacity'	:	0.7,
		'overlayColor'		:	'#FFF'
	});
	$("a.zoom2").fancybox({
		'zoomSpeedIn'		:	1024,
		'zoomSpeedOut'		:	500
	});

	$("#slider").easySlider({
		auto: false,
		prevId: 'prevBtn',
		prevText: 'Previous',
		nextId: 'nextBtn',	
		nextText: 'Next',
		continuous: true,
		speed: 800,
		pause: 3000,
		numeric: true
	});
		
	$(".portfolio_cont").mouseover (function(){
    	$(this).children('span').show();
		$(this).children('img').css("margin-top","-217px");
	});
	$(".portfolio_cont").mouseout (function(){
    	$(this).children('span').hide();
		$(this).children('img').css("margin-top","0px");
	});

	$(".arrow_right").hover(
		function () {
		    $(this).attr("src", "images/arrow_right.png");
		}, 
		function () {
			$(this).attr("src", "images/arrow_right2.png");
		}
	);
	$(".arrow_left").hover(
		function () {
		    $(this).attr("src", "images/arrow_left.png");
		}, 
		function () {
			$(this).attr("src", "images/arrow_left2.png");
		}
	);
	/*$(".hit_buttons [src=images/circle_1.png]").hover(
		function () {
		    $(this).attr("src", "images/circle_2.png");
		}, 
		function () {
			$(this).attr("src", "images/circle_1.png");
		}
	);*/
	$(".hit_buttons").hover(
		function () {
		    if($(this).hasClass('actual_not')){$(this).attr("src", "images/circle_2.png")};
		    
		}, 
		function () {
			if($(this).hasClass('actual_not')){$(this).attr("src", "images/circle_1.png")};
			
		}
	);

});
