function handlejquery(){

    /*********************************************************
        Animation
    *********************************************************/   
    /*
    $("#supersize").click(function(){
        $("#supersize").animate({ 
            opacity: "hide"
        }, 1000 );         
        
        $("#container").animate({ 
            opacity: "show",
            display: "block"
        }, 1000 );         
    });
    */
    
    $("#show-hcr").click(function(){
        $("#contact-contact").fadeOut("fast"); 
        $("#contact-hcr-more").fadeOut("fast");           
        $("#contact-hcr").fadeIn("fast");           
    });
    
    $("#show-contact").click(function(){
        $("#contact-hcr").fadeOut("fast"); 
        $("#contact-hcr-more").fadeOut("fast"); 
        $("#contact-contact").fadeIn("fast");         
    });

    $("#show-more").click(function(){
        $("#contact-hcr").fadeOut("fast"); 
        $("#contact-contact").fadeOut("fast"); 
        $("#contact-hcr-more").fadeIn("fast"); 
    });

    $("#show-less").click(function(){
        $("#contact-contact").fadeOut("fast"); 
        $("#contact-hcr-more").fadeOut("fast"); 
        $("#contact-hcr").fadeIn("fast"); 
    });
    
    /*********************************************************
       Slideshow 
    *********************************************************/
    var slideshowSpeed = 800;
    var slideshowTimeout = 4000;    
    
    $('.gallery').cycle({ 
        fx:      'fade', 
        speed:    slideshowSpeed, 
        timeout:  0,
        continuous: 0, // set this to 0 so timeout will work
        slideExpr: 'li.gallery-item',
        cleartype: '1',
        next: '.slideshow-next',
        prev: '.slideshow-prev',
        pager: '#pane-target',
        pagerEvent: 'mouseover',

        pagerAnchorBuilder: function(idx, slide) { 
            // return selector string for existing anchor 
            return '#pane-target li:eq(' + idx + ') a'; 
        }
    });
        
    /*********************************************************
        Supersized
    *********************************************************/    
    /*
    $.fn.supersized.options = {  
			startwidth: 2500,  
			startheight: 1400,
			minsize: .30,
			slideshow: 1,
			slideinterval: 5000  
		};
    $('#supersize').supersized(); 
    */
};

