/*
----- Made by WebForceOne ------------------
----- http://www.webforceone.nl --------
----- Contact: info@webforceone.info -------
----- Telephone: 070 767 00 43 -------------
*/

var base_url = "http://www.wonenopsterrenberg.nl/";
var admin_url = "http://beheer.webforceone.info/heteikendal/";

function animateHome() {
	
	setTimeout(function() { 
		
		$('.pop_up').animate({
    		top: '20%'
  		}, 1500, "easeOutElastic");
  	
  	}, 1000);

}

// Body onload
$(document).ready(function() {
			
// OnLoad ------------------------------------------------------------------------------------------
	
	// Placeholders Switch Text
	function switchText() {
		
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
			$(this).css("color","black");
		} else if ($.trim($(this).val()) == '') {
			$(this).val($(this).attr('title'));
			$(this).css("color","#929292");
		}
	}
	
	$('input[type=text][title != ""]').each(function() {
		
		if ($.trim($(this).val()) == '') {
			$(this).val($(this).attr('title'));
			$(this).css("color","#929292");
		}
		
	}).focus(switchText).blur(switchText);
	
	$('form').submit(function() {
		$(this).find('input[type=text][title != ""]').each(function() {
			if ($(this).val() == $(this).attr('title')) {
				$(this).val('');
			}
		});
	});
	
	$(function() {
    	var COOKIE_NAME = 'splash-page-cookie4';
        $go = $.cookie(COOKIE_NAME);
        if ($go == null) {
        	$.cookie(COOKIE_NAME, 'test', { path: '/', expires: 1 });
           	animateHome();
        } else {
        	// Niks doen
        	//animateHome();
        }
	});	
	
	$(".pop_up .close").click(function(){
		$('.pop_up').fadeOut(300);
		$('.pop_up').remove();
	});
		
});
