$(document).ready(function() {
	
	$("#slider").easySlider({
		auto: true, 
		continuous: true,
		numeric: true
	});
	
	
	
	$(".short-1:odd").addClass("x-color-2");	
	
	$(".shad2:even").addClass("shad");	
	
	$(".new-com:odd").addClass("color-2");
	
	$('.modal-link').click(function() {
		$("#modal").fadeIn(1000);
		$(".no-body").fadeIn(1000);
	})
	
	$('.modal-close').click(function() {
		$("#modal").fadeOut(1000);
		$(".no-body").fadeOut(1000);
	})
	
});

