$(document).ready(function() {
		
		init();
		
		$('.link1').click(
			function() {
				hideRest('.link_1');
			}
		);
		
		$('.link2').click(
			function() {
				hideRest('.link_2');
			}
		);
		
		$('.link6').click(
			function() {
				hideRest('.link_6');
			}
		);
		
		$('.link7').click(
			function() {
				hideRest('.link_7');
			}
		);
				
		function init() {
			/*
			$('.link_1').hide();
			$('.link_2').hide();
			$('.link_6').hide();
			$('.link_7').hide();
			*/
				
			if( $.cookie('nextMenu') != null ) {
				$( $.cookie('nextMenu') ).show("fast");
			}

		}
		
		function hideRest( current ) {
						
			if( $(current).css("display") == "block" ) {
				$(current).hide("fast");
			} else {
				$(current).show('fast');
				$.cookie('nextMenu', current, { path: '/', expires: 10 });
			}
			
			if( current != '.link_1' ) $('.link_1').hide('fast');
			if( current != '.link_2' ) $('.link_2').hide('fast');
			if( current != '.link_6' ) $('.link_6').hide('fast');
			if( current != '.link_7' ) $('.link_7').hide('fast');
			
		}
		
		
		//pentru popup google search main site
		function popitup(url) {
			newwindow=window.open(url,'Google Search','height=800,width=600');
			if (window.focus) {
				newwindow.focus();
			}
			return false;
		}
});	