﻿$(document).ready(function() {

//	if ( $.browser.msie ) { 
//		var i='.mainmenu ul li a';	 
//		$(i).css('font-family','Tahoma, Geneva, sans-serif'); 
//		$(i).css('font-size','12px'); 
//		$(i).css('font-weight','normal'); 
  //
//		var i='.cabinet';	 
//		$(i).css('font-family','Tahoma, Geneva, sans-serif'); 
//		$(i).css('font-size','12px'); 
//		$(i).css('font-weight','normal'); 
  //
//		var i='h1';	 
//		$(i).css('font-family','Tahoma, Geneva, sans-serif'); 
//		$(i).css('font-size','18px'); 
//		$(i).css('font-weight','normal'); 
//	};


//	for (var i = 0; i<1000; i++)
//	{
//	  if( ( i + 1 ) % 2 ) { $('#abody').animate({ backgroundPosition: "-2800px top"	},25000); }
//          else { $('#abody').animate({ backgroundPosition: "0px top" },25000); };
//	}


	for (var i = 0; i<50; i++)
	{
	  if( ( i + 1 ) % 2 ) { $('#connect').animate({ marginTop: "-3px"	},500); }
	  else { $('#connect').animate({ marginTop: "3px" },500); };
	  if( i==49 ) $('#connect').animate({ marginTop: "0px" },500);	
	}


	$(".mainmenu ul li").mouseover( function () { 
		if ($(this).attr("class")!='active' && $(this).attr("class")!='last active'  ) $(this).animate({ marginTop: "-4px" },300);  
	} );

	$(".mainmenu ul li").mouseout( function () { $(this).animate({ marginTop: "0px" },300);
	 } );




});
