// JavaScript Document

$(document).ready( function() {
	
	$("#logo").ifixpng('/images/ie.gif');
	
// jScrollPane code
	
	$('#scrollPane').jScrollPane({
 //You can pass some optional parameters to the jScrollPane function. These take the form of an object with the following attributes:
    scrollbarWidth : 19, //the width of the created scrollbar in pixels (defaults to 10)
    scrollbarMargin : 10, //the margin to leave to the left of the scrollbar in pixels (defaults to 5)
   // wheelSpeed [int] - controls how fast the mouse wheel makes the content scroll in pixels (defaults to 18)
    showArrows : false, //controls whether to display arrows for the user to scroll with (defaults to false)
    dragMinHeight : 0, //the minimum height to allow the drag bar to be (defaults to 0)
    dragMaxHeight : 357 //the maximum height to allow the drag bar to be (defaults to 99999!)
	});
	
	$('#scrollPane2').jScrollPane({
 //You can pass some optional parameters to the jScrollPane function. These take the form of an object with the following attributes:
    scrollbarWidth : 19, //the width of the created scrollbar in pixels (defaults to 10)
    scrollbarMargin : 10, //the margin to leave to the left of the scrollbar in pixels (defaults to 5)
   // wheelSpeed [int] - controls how fast the mouse wheel makes the content scroll in pixels (defaults to 18)
    showArrows : false, //controls whether to display arrows for the user to scroll with (defaults to false)
    dragMinHeight : 0, //the minimum height to allow the drag bar to be (defaults to 0)
    dragMaxHeight : 390 //the maximum height to allow the drag bar to be (defaults to 99999!)
	});


});// close outer function