// JavaScript Document
 jQuery(function (){
        jQuery('#displayDROPONE').click(function (){
             jQuery("#drop-one-container").slideToggle();
               setTimeout(function () {
                jQuery.scrollTo("#droponetarget", 500 );   
               }, 500);
            return false;            
        });
 
    });
    
    jQuery(function (){
        jQuery('#displayDROPTWO').click(function (){
             jQuery("#drop-two-container").slideToggle();
               setTimeout(function () {
                jQuery.scrollTo("#droptwotarget", 500 );   
               }, 500);
            return false;            
        });
 
    });
	
	
   
    jQuery(function (){
        jQuery('#displayDROPTRE').click(function (){
             jQuery("#drop-tre-container").slideToggle();
               setTimeout(function () {
                jQuery.scrollTo("#droptretarget", 500 );   
               }, 500);
            return false;            
        });
 
    });
   
    jQuery(function (){
        jQuery('#displayDROPFOR').click(function (){
             jQuery("#drop-for-container").slideToggle();
               setTimeout(function () {
                jQuery.scrollTo("#dropfortarget", 500 );   
               }, 500);
            return false;            
        });
 
    });
	
	jQuery(function (){
        jQuery('#displayDROPMORE').click(function (){
             jQuery("#drop-more-container").slideToggle();
               setTimeout(function () {
                jQuery.scrollTo("#dropmoretarget", 500 );   
               }, 500);
            return false;            
        });
 
    });