$(document).ready(function(){
	// hovery na bocznych strzałkach
	$('#sg_left img').mouseover(function(){ $(this).attr('src', '/static/img/sg_left_hover.png');});
	$('#sg_left img').mouseout(function(){$(this).attr('src', '/static/img/sg_left.png');});
	$('#sg_right img').mouseover(function(){$(this).attr('src', '/static/img/sg_right_hover.png');});
	$('#sg_right img').mouseout(function(){$(this).attr('src', '/static/img/sg_right.png');});	
	
	$('#home_page_img .slide_wrapper').scrollable({
		'next' : '#sg_right',
		'prev' : '#sg_left',
		'circular': false,
		'speed': 700
	});
	
	$('#sg_right,#sg_left').click(function(e){
		e.preventDefault();
	});
	
	$('#howitworks a, #tests').fancybox({
		'centerOnScroll'	: true,
    	'autoDimensions'	: false,
		'width'         	: 500,
		'height'        	: 300,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'padding'			: 0,
		'overlayColor'		: '#000000',
		'overlayOpacity'	: '0.8',
	});
});
