// Set jQuery to be compatible with mootools and other frameworks
$j = jQuery.noConflict();

$j(document).ready(function() {


	// Set infobox corners
	$j(".infobox").corner();
	
	// Loading Advertisment at first visit
	if(!($j.cookie('first_visit')))
	{
		$j.cookie('first_visit', true, { path: '/' });
		$j('.popup_content').show();
		$j('#hidden_link').fancybox({
			'overlayColor'		: '#000',
			'overlayOpacity'	: 0.7,
			'titleShow'			: false,
			'autoScale'			: false, 
		}).trigger('click');
	}
	
	$j('.aufleger a, div.jubilaeum_banner a').fancybox({
			'overlayColor'		: '#000',
			'overlayOpacity'	: 0.7,
			'titleShow'			: false,
			'autoScale'			: false, 
	});
		
	
	// Check customer distance
	$j("input.plz").change(function() {
		var plz_from = 90427;
		var plz_to = $j("input.plz").val();
		
		$j.get('/templates/ogdbDistance/get_dist.php?plz_from=' + plz_from + '&plz_to=' + plz_to, function(dist) {
	 		if(dist > 50)
	 		{
				check = confirm('Vielen Dank für Ihr Interesse.\n\nLeider können wir nur Anfragen aus der Region Nürnberg, Erlangen und Fürth bearbeiten.\n\nWir bitten um Ihr Verständis.\n\nSollten Sie Ihre PLZ falsch eingegeben haben, dann können Sie diese über "Abbrechen" korrigieren.');
				if(check == true)
				{
					$j(".ce_form").css("display", "none");
					$j(".ce_form").after('<p style="color: #0061AA;"><strong>Anfrage befindet sich außerhalb unseres Einzugsgebietes ...</strong></p>');
				}
	 		}
					
		});
	});
	
	
});
