jQuery(document).ready(function () {

	jQuery('.imgFade').hover(function () {
		jQuery(this).stop().animate({ 'opacity': .7 }, 200);
	}, function () {
		jQuery(this).stop().animate({ 'opacity': 1 }, 500);
	});
	
	jQuery('.scDrop h2').hover(function() {
		jQuery(this).css('color','#575757');
	}, function() {
		jQuery(this).css('color','#0095d9');
	});
	jQuery('.scDrop h2').toggle(function() {
		jQuery(this).parent('.scDrop').children('.scdItem').slideDown();
	}, function() {
		jQuery(this).parent('.scDrop').children('.scdItem').slideUp();
	});

	jQuery('img.mainBannerArrow').hover(function() {
		jQuery(this).stop().animate({ 'opacity': .6 }, 200);
	}, function () {
		jQuery(this).stop().animate({ 'opacity': 1 }, 500);
	});

});

function create_mail(eNaam, eDomain, eTLD, eLabel) {
	var wMail = "";
	if (eLabel == "show") {
		eLabel = eNaam + '&#64;' + eDomain + '.' + eTLD;
	}
	wMail += '<a href="' + 'ma' + 'il' + 'to:' + eNaam;
	wMail += '&#64;' + eDomain + '.' + eTLD;
	wMail += '">' + eLabel + '<' + '/a>';
	document.write(wMail);
}
