jQuery(document).ready(function(){

	// Formular Tip a Friend
	if (document.referrer != document.location) {
		$('#tipAFriend form').hide();
	}
	
	$('#tipAFriend').mouseenter(function(){
		$('#tipAFriend form').fadeIn();
	});

});
