$(document).ready(function($) {
	 /* Navigation Top */
	 $('#navigation-top .level-2').fadeIn('fast');
	 
	 /*
	 $('#navigation-top .hassubNav,#navigation-top .hassubNavAct').mouseenter(function(){
	    $('#navigation-top .hassubNav .level-2').fadeOut('fast');
	    $('.level-2',this).fadeIn('fast');
	 });
	
	 $('#navigation-top .hassubNav,#navigation-top .hassubNavAct').mouseleave(function(){
	    $('#navigation-top .hassubNav .level-2').fadeOut('fast');
	    //$('#navigation-top #level1-14 .level-2').fadeIn('fast');
	 });
	 */
    
	$('#contact_close').click(function() {
	   document.getElementById('contact_close').style.display='none';
	  $('#contactslide').slideUp('slow', function() {
		  // Animation complete.
	  }); 
	   document.getElementById('contact_toggle').className = "contacttoggle-act";
	   getElementsByClassNameGen('div','error');
	   //var erroritems = document.getElementsByClassName('error');
	   //for(i=0;i<erroritems.length;i++) {  
       // erroritems[i].style.visibility = "hidden";  
       //} 
	});
	
	
	$('#contact_toggle').click(function() {
	  if(!document.getElementById('contactform')) {
		$.get('http://www.advertising.de/index.php?id=110&type=678', function(data) {
	     $('#contactslide').html(data);
	  	document.getElementById('contact_close').style.display='block';
	  	document.getElementById('contact_toggle').className = "contacttoggle-inact";	     
		 //alert('Load was performed.');
	    });
	  } else { 	
	  	window.setTimeout('showCloseButton()',500);
	  	//document.getElementById('contact_close').style.display='block';
	  	document.getElementById('contact_toggle').className = "contacttoggle-inact";		  	
	  }
      $('#contactslide').slideDown('slow', function() {
		    // Animation complete.
	  });
	});

		
    $('#slider').cycle({
        fx: 'fade',
        speed: 2000,
        timeout: 8000,
		pager:  '#slidermenu',
		pagerEvent: 'mouseover',
		pause: 0,
		allowPagerClickBubble: true,
		pagerAnchorBuilder: function(idx, slide) { 
			var sliderimg = "sliderimg-"+idx;
			return '<a href="'+document.getElementById(sliderimg).longDesc+'">'+document.getElementById(sliderimg).title+'</a>';
		}
	});

    $('#slider2').cycle({
        fx: 'scrollLeft',
        speed: '1000',
        timeout: '6000'
	});	

	$('#submenu-ul li a').hover(function() { 
		$(this).animate({ color: '#d3011e' }, 600); 
	}, function() {
		$(this).animate({ color: '#666666' }, 300);
	});
  
});

function showCloseButton() {
 document.getElementById('contact_close').style.display='block';	
}

function hideContactForm() {
  document.getElementById('contactslide').style.display = 'none';
}

function getElementsByClassNameGen(tagname, findClass) {
 if(tagname) {
  var aElm=document.body.getElementsByTagName(tagname);
  for(var i=0; i<aElm.length; i++) {
   if(aElm[i].className==findClass) {
    aElm[i].style.visibility = "hidden"; 
    }
   }
  }
}

