$(document).ready(function() {
  
  if(document.title == 'Suche + Angebot') {
    
    $('#content ul li a').each(function(i){
      $(this).attr("href", "#mailform" + (i));
    });
    
    $('form').each(function(i){
      $(this).wrap('<div id="mailform'+(i)+'"></div>');
      $(this).removeAttr('id');
      $(this).attr("id", "form" + (i));
      $(this).addClass('mailform');
    });
 
    $('#content > ul').tabs();
  }
  
  if(document.title == 'Startseite') {
  	$('.impressum p:first-child').css("cursor", "pointer");
  }
  
  if(window.location.search != ''){
  	if(window.location.search.indexOf('mediacookie_immomanager_uid')){
  		$('.csc-frame-frame1').show();
  		$('#mailformHaus').val($('.immomanager-single h1:first').html());
  	}
  }
});
