// JavaScript Document

$(document).ready(function () {
	$(".largeview").children("li").addClass("hide");
	$($(".largeview").children("li")[0]).removeClass("hide");
	
	 $(".thumbnails").children("li").hover(function () {
      var index = $(".thumbnails").children("li").index(this);

	   $(".largeview").children("li").addClass("hide");
	   $($(".largeview").children("li")[index]).removeClass("hide");
    });
});


$(document).ready(function () {
	$(".largeview").children("li").addClass("hide");
	$($(".largeview").children("li")[0]).removeClass("hide");
	$($("#homeview").children("li")[0]).addClass("hide");
	$($("#homeview").children("li")[1]).removeClass("hide");
	
	 $("#nav").children("li").hover(function () {
      var index = $("#nav").children("li").index(this);
	  

	   $(".largeview").children("li").addClass("hide");
	   $($(".largeview").children("li")[index]).removeClass("hide");
    });
});

$(document).ready(function () {
	$(".thumbnails").children("li").hover(
		function () {
			$(this).addClass("hover");
		},
		function () {
			$(this).removeClass("hover");
		}
	);
	
	$(".nav").children("li").hover(
		function () {
			$(this).addClass("hover");
		},
		function () {
			$(this).removeClass("hover");
		}
	);
});

