$(document).ready(function() {  
	/* Menu */
	$("li.hassub").hover(function() {
		$(this).addClass('over');
      }, 
      function () {
        $(this).removeClass('over');
      }
	);                             
    
	/* this initialises the and scrollTo links. */
	
	$('#pane').jScrollPane({showArrows:false, scrollbarWidth:0, animateTo:true});

    $('.scroll-by').bind(
	    'mousedown',
		function(){
	        $('#pane')[0].scrollBy(parseInt($(this).attr('rel')));
            return false;
    	}
	);  

	/* Fixes PNG images for IE6 */
	$.ifixpng('layout/pixel.gif'); 
	$('img[@src$=.png]').ifixpng();                  
 	
});