jQuery('span.javawarning').hide();
	
myvariable = "0";  //now myvariable exists
easing = "jswing"
	jQuery(document).ready(function() {


  jQuery('.menu').hover(
  function () {
   jQuery(this).animate({
    height:30}, 1000, easing,function() {
    // Animation complete.
  });
  }, 
  function () {
	
	
   jQuery(this).stop(true, false).animate({
    height:'1.2em'}, 1000, easing,function() {
    // Animation complete.
  });
  
  }
);


  jQuery('#butleft').hover(
  function () {
    jQuery(this).css("color","#B11313");
    jQuery('#videoscroller .inner').animate({
    left: 160}, 2000, easing,function() {
    // Animation complete.
  });
  }, 
  function () {
    jQuery('#butleft').find("span:last").remove();
    jQuery('#videoscroller .inner').stop(true, false);
  }
);

	});
	
		
jQuery(document).ready(function() {

  jQuery('#butright').hover(
  function () {
    jQuery(this).css("color","#B11313");
    jQuery('#videoscroller .inner').animate({
    left: -760}, 2000, easing, function() {
    // Animation complete.
  });

  }, 
  function () {
    jQuery(this).css("color","black");
    jQuery('#videoscroller .inner').stop(true, false);
  }
);

});
		

  
