/*document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"><\/script>')*/
if ( $.browser.msie ) {
  if($.browser.version == 6.0 || $.browser.version == 7.0 || $.browser.version == 8.0){
  	document.write('<script src="//www.402automotive.com/sebastix/lib/excanvas.min.js"><\/script>');	
  }
}
document.write('<script src="//www.402automotive.com/sebastix/lib/jquery.jqplot.min.js"><\/script>');
document.write('<script src="//www.402automotive.com/sebastix/lib/plugins/jqplot.pieRenderer.min.js"><\/script>');
document.write('<script src="//www.402automotive.com/sebastix/lib/plugins/jqplot.donutRenderer.min.js"><\/script>');
document.write('<script src="//www.402automotive.com/sebastix/lib/plugins/jqplot.barRenderer.min.js"></script>');
document.write('<script src="//www.402automotive.com/sebastix/lib//plugins/jqplot.categoryAxisRenderer.min.js"></script>');
document.write('<script src="//www.402automotive.com/sebastix/lib//plugins/jqplot.pointLabels.min.js"></script>');
document.write('<link rel="stylesheet" type="text/css" href="//www.402automotive.com/sebastix/css/jquery.jqplot.css"/>');
jQuery(document).ready(function(){
	$('a.bestel').click(function(){
		$('div.contact').slideDown();
		$(window).scrollTop($('div.contact').offset().top);
		var rel = $(this).attr('rel');
		$('form input#onderwerp').val('Informatie over sponsor pakket: '+ rel);			
		return false;
	});
	$('form#sponsor-info .submit').click(function(){
		var bedrijfsnaam = $('input#bedrijfsnaam').val();
		var contactpersoon = $('input#contactpersoon').val();
		var telefoonnummer = $('input#telefoon').val();
		var mailadres = $('input#email').val();
		var onderwerp = $('input#onderwerp').val();
		var message = $('textarea#message').val();
		var source = window.location.href;
		message = message.replace(/\n\r?/g, '<br />');
		if(bedrijfsnaam != '' && contactpersoon != '' && telefoonnummer != '' && mailadres != '' && onderwerp != '' && message != ''){
			$.ajax({
				url: '/sebastix/sendForm.php',
				data: 'action=sendMail&name='+bedrijfsnaam+'&contactpersoon='+contactpersoon+'&telefoon='+telefoonnummer+'&mailadres='+mailadres+'&onderwerp='+onderwerp+'&message='+message+'&src='+source,
				complete: function(xhr,e){
					$('div.contact').empty().append('<p style="color:#FFF; text-align:center; font-size:24px; line-height:50px; background:green;">Bedankt, je bericht is succesvol verzonden!</p>');					
					//alert(xhr.responseText);
				}
			});	
		}
		else{
			alert('U dient wel alle velden van het formulier in te vullen');
		}			
		return false;	
	});
	//--- EVENT INFO VISUALISATIES ---//
	//document.write('<script src="//www.402automotive.com/sebastix/lib/jquery.jqplot.js"><\/script>');
});	
