$(document).ready(function() {
	$(".website_gallery img").hide();
	$(".website_gallery img:nth-child(1)").show();
	$(".pagination_content li:nth-child(1) a").addClass("current_page");
	$(".pagination_content li a").click(function() {
		$(".pagination_content .current_page").removeClass("current_page");
		$(this).addClass("current_page");
	});
	$(".website_container div").hide();
	$(".website_container div:nth-child(1)").show();
	$(".pagination li:nth-child(1) a").addClass("current_page");
	$(".pagination li a").click(function() {
		$(".pagination .current_page").removeClass("current_page");
		$(this).addClass("current_page");
	});
	$("#site_1").click(function() {
		$(".website_container div").hide();
		$(".website_container div:nth-child(1)").fadeIn("300");
		return false;	
	});
	$("#site_2").click(function() {
		$(".website_container div").hide();
		$(".website_container div:nth-child(2)").fadeIn("300");
		return false;
	});
	$("#site_3").click(function() {
		$(".website_container div").hide();
		$(".website_container div:nth-child(3)").fadeIn("300");
		return false;	
	});
	$("#site_4").click(function() {
		$(".website_container div").hide();
		$(".website_container div:nth-child(4)").fadeIn("300");
		return false;
	});
	$("#screen_1").click(function() {
		$(".website_gallery img").hide();
		$(".website_gallery img:nth-child(1)").fadeIn("300");
		return false;	
	});
	$("#screen_2").click(function() {
		$(".website_gallery img").hide();
		$(".website_gallery img:nth-child(2)").fadeIn("300");
		return false;
	});
	$("#screen_3").click(function() {
		$(".website_gallery img").hide();
		$(".website_gallery img:nth-child(3)").fadeIn("300");
		return false;	
	});
	$("#screen_4").click(function() {
		$(".website_gallery img").hide();
		$(".website_gallery img:nth-child(4)").fadeIn("300");
		return false;
	});
});
