// JavaScript Document                                                                                             
// Frömming + Struck GbR 
// ROCKmedia      
// Andreas-Gayk-Str. 7-11
// 24103 Kiel
// author: ROCKmedia / Germany / Kiel
// e-mail: info@rockmedia.de

$("#subnav a").click(function() {
 if( $(this).attr('href') != '#' )
 {
     var url1 = $(this).attr('href');   
     var without1 = '?site=sub_nav';
	 var url_front1 = 'http://www.halle400.de'
     var url_without1 = url_front1+url1+without1;  

 	}
 	else
 	{
    	return false;
 	}

 $("#c630-right").delay(0).slideUp(450);

 $('#subnav > ul > li').removeClass('rex-active');
 $('#subnav > ul > li').removeClass('rex-current');
 $(this).parent().addClass('rex-active');

	window.location.hash = url1;


 setTimeout (function() {
	
	$("#c630-right").load(url_without1, function(){ 

		 $("#c630-right").delay(200).slideDown(500);		 
		
	});


 }, 600 );
 return false;
	});
