/*#################### MAIN NAVIGATION #########################*/

$(document).ready(function(){ 
         $('ul.sf-menu').superfish({ 
            pathClass:  'current',
            delay:      1000,                            // one second delay on mouseout 
            animation:  {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:      'slow',                          // slower animation speed 
            autoArrows: false                            // disable generation of arrow mark-up  
        }); 
    });

/*######################## RIGHT COLUMN ROUNDED CORNERS ######################################*/
$(document).ready(function () {
  
  $('div#right_col .rc').corner();

});


/*######################## PRODUCTS SLIDE_OUT MENU ######################################*/
$(document).ready(function () {
 // assuming we have the open class set on the a when the HTML is delivered 
 $('LI.drawer a:not(.open)').next().slideUp();  
 $('a.drawer-handle').click(function () {    
 // find the open drawer, remove the class, move to the UL following it and hide it    
  $('a.open').removeClass('open').next().slideUp();   
     // add the open class to this a, move to the next element (the UL) and show it     
	 $(this).addClass('open').next().slideDown();  
	 return false; 
 });
});


/*###################### SITEMAP ########################################*/	
$(document).ready(function () {
     $('.csc-sitemap ul li:last-child').addClass('last');
});	 
	  
