$(document).ready(function() {
	// Code
	
	$('.btnSmall, .step2').click(function(){
		url = $(this).find('a').attr('href');
		if (url != null) {
			window.location = url;
		}
	});

	$('.btnSmall, .step2').hover(function(){
		url = $(this).find('a').attr('href');
		if (url != null) {
			$(this).css("cursor", "pointer");
		}
	});
	
	$("#slider").easySlider({
		auto: true,
		continuous: true,
		controlsShow: false,
		speed: 500,
		pause: 3000
	});
});

