/* Author: 

*/
jQuery(document).ready(function($) {
 
  $.localScroll.hash({
        queue:true,
        duration:1500
    });
    
  $.localScroll({
        queue:true,
        duration:1000,
        hash:true,
        onBefore:function( e, anchor, $target ){
            // The 'this' is the settings object, can be modified
        },
        onAfter:function( anchor, settings ){
            // The 'this' contains the scrolled element (#content)
        }
    });
    
    
animatedcollapse.addDiv('psc', 'fade=0,speed=400,group=my-work')
animatedcollapse.addDiv('other', 'fade=0,speed=400,group=my-work')
animatedcollapse.addDiv('another', 'fade=0,speed=400,group=my-work')

animatedcollapse.ontoggle=function($, divobj, state){ //fires each time a DIV is expanded/contracted
	//$: Access to jQuery
	//divobj: DOM reference to DIV being expanded/ collapsed. Use "divobj.id" to get its ID
	//state: "block" or "none", depending on state
	//http://www.dynamicdrive.com/dynamicindex17/animatedcollapse.htm
}

animatedcollapse.init()

});
