// JavaScript Document

$(document).ready(function(){
	$('div.slide').hide();//hide all the slides
	$('div.one').show();//only show the first one
	$('#one').addClass('colored');//highlight linke number '1'
	
	//Event handler to move from slide to slide
	$('p.moreLinks a').click(function(){
		$('p#slides').removeClass("back").addClass("moreLinks");
		$('p.moreLinks a').removeClass('colored');
		$('div.slide').hide();
		var slide = $(this).attr("id");
		$('div.' + slide).show("slow");
		$(this).addClass('colored');
		if(slide == "three") $('p#slides').removeClass("moreLinks").addClass("back");
		return false;
	})//end click handler
						   
	//Event handler to open new windows for print media samples
	$('a.enlarge').click(function(){
			var dim = $(this).attr("class").split("_")[1].split(":"); // dim = pictures dimensions
			var width = dim[0];
			var height = dim[1];
			window.open(this.href,"test","status=1,top=50,left=50,width=" + width + ",height=" + height);
			return false;
	})//end click handler
	
})//end ready handler