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



$(".img_content_link a, .gallery-list a, .termine a, .link-intern 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;
	});
	
	
	

$("#content-footer a").click(function() {
 if( $(this).attr('href') != '#' )
 {
     var url = $(this).attr('href');   
     var without = '?site=main_nav';
	 var url_front = 'http://www.halle400.de'
     var url_without = url_front+url+without;  
	
 	}
 	else
 	{
    	return false;
 	}
 
 $("#content-wrapper").delay(0).slideUp(300);
 $("#fullbg").delay(0).fadeOut(500);
 $("#fullbg").delay(300).slideUp(500);

 $('#nav > ul > li').removeClass('rex-active');
 $('#nav > ul > li').removeClass('rex-current');
 $(this).parent().addClass('rex-active');
	
	window.location.hash = url;

   
 setTimeout (function() {
	
	$("#content-wrapper").load(url_without, function(){ 

		$("#content-wrapper").delay(1000).slideDown(800);
		$("#fullbg").delay(800).fadeIn(500);

	});

 }, 600 );
 return false;
	});
	
	
	$("#content p a").click(function() {
	 if( $(this).attr('href') != '#' )
	 {
	     var url = $(this).attr('href');   
	     
		 window.open(url);

	 	}
	 	else
	 	{
	    	return false;
	 	}

	 return false;
		});
