$(document).ready(function(){
	
	// Click im rechten Menü
	
	// btnContact
	$('.btnContact').click(function(){
		openLayer('./res/ajax/kontakt.php');
	});
	
	// btnContact
	$('.normalContactLink').click(function(){
		openLayer('typo3conf/ext/preo_ag_com/ajax/kontakt.php');
	});
	//$('.bulletContactLink').attr('href', '#');
	$('.bulletContactLink').click(function(){
		openLayer('typo3conf/ext/preo_ag_com/ajax/kontakt.php');
		return false;
	});
	$('.bulletNewsletterLink').click(function(){
		openLayer('typo3conf/ext/preo_ag_com/ajax/newsletter.php');
		return false;
	});
	$('.bulletSuggestLink').click(function(){
		openLayer('typo3conf/ext/preo_ag_com/ajax/suggest.php');
		return false;
	});
	$('.bulletDownloadLink').click(function(){
		openLayer('index.php?id=69');
		return false;
	});
	$('.bulletPresscontactLink').click(function(){
		openLayer('typo3conf/ext/preo_ag_com/ajax/kontakt.php?subject=presscontact');
		return false;
	});
	
	// +++++++++++++++++++++++++++++++++++++++++++++++
});

function formSearchShortSubmit() {
  var option = $('#formSearchShort input[name=searchType]:checked').val();
  if (option == 'products') {
    $('#formSearchShort').attr('action', '/deutsch/angebote.html');
  }
  $('#formSearchShort').submit();
}