

	// initialise plugins
jQuery(function(){
  jQuery('ul.sf-menu').superfish({
    speed:       'fast',                          // faster animation speed 
    autoArrows:  false,                           // disable generation of arrow mark-up 
    dropShadows: false                            // disable drop shadows
  });
});

	// 
$(document).ready(function(){
  $('.arrow').hover(
    function(){ // Change the input image's source when we "roll on"
      $(this).attr({ src : 'fileadmin/rc/img/arrow_h.gif'});
	},
    function(){ // Change the input image's source back to the default on "roll off"
      $(this).attr({ src : 'fileadmin/rc/img/arrow_n.gif'});
	}
  );
});
