// JavaScript Document


//This gives the links on the Interior2 page an effect on rollover
$(function(){	
	$("#links img").hover(
		  function () {
			$(this).css("opacity", "0.8");
		  }, 
		  function () {
			$(this).css("opacity", "1");
		  }
	);
	

	var notebookHeight = $('#notebook').height();
	var remainder = (notebookHeight % 25);
	$('#notebook').height(notebookHeight+remainder);

	
});





