$(document).ready(function(){
        // open any link with a class of open in a new window
        $('.open').click(function(){
                window.open(this.href);
                return false;
        });
		$('html').addClass('ipl1 ipl2 ipl3 ipl4 ipl5 ipl6 ipl7 ipl8');
        
		// see if the js is loaded - unused afaik
        $('body').addClass('loaded');
        
		// pretty gallery effects
        $('a[rel="gallery"]').colorbox({transition:'fade'});
		
		// smooth scrolling
       	$('#main_menu').localScroll();

});
