$(document).ready(function(){		$('.button').hover(		function(){			if ($(this).hasClass('sub')) {				$(this).css({'background':'url(/design/images/top_menu_bg.gif) 0 -94px no-repeat'});				$(this).children().css({'color':'#fff'});				var Id = (this).id;				Id = Id.replace(/sub/g,"");				$('#s'+Id).show();				}			else {				$(this).css({'background':'url(/design/images/top_menu_bg.gif) 0 -47px no-repeat','color':'#ef2f72'});				$(this).children("a:first").css({'color':'#ef2f72'});			}		},		function(){			$(this).css({'background-position':'0 0'});			$(this).children().css({'color':'#7c7c7c'});			if ($(this).hasClass('sub')){				var Id = (this).id;				Id = Id.replace(/sub/g,"");				$('#s'+Id).hide();				}			}		);		$('#sub2 a:first, #sub3 a:first, #sub4 a:first').click(			function(){				return false;			}		);});
