var HLINK	= 'http://dev.digizijn.nl/tilia/';

$(document).ready(function(){	
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
		theme: "light_rounded",
		deeplinking: false,
		social_tools: false,
		counter_separator_label: ' van ',
		overlay_gallery: false
	});
	
	$(".keuze").click(function() {
		if ($(".keuze:checked").val() == "offerte") {
			$("#offerte").fadeIn()
		}
		else {
			$("#offerte").fadeOut()
		}
	});
	
    $('.imgbanner').cycle({
		fx: 'fade',
		speed:3000,
		random:  1 
    });
	
	if ($(".keuze:checked").val() == "offerte") { $("#offerte").fadeIn(); }
	
	var $incheight = $('.content').innerHeight();
	$(".portfolio").css('height',$incheight + 'px');
	
	$('#maak_afspraak').hover(function() {
        $(this).stop(true,true).animate({backgroundPosition: "-223px 0px"});
    },function() {
        $(this).stop(true,true).animate({backgroundPosition: "0px 0px"});
    });
    
	$('#volg_twitter').hover(function() {
        $(this).stop(true,true).animate({backgroundPosition: "-223px -48px"});
    },function() {
        $(this).stop(true,true).animate({backgroundPosition: "0px -48px"});
    });
    
	$('#aanmelden_nieuwsbrief').hover(function() {
        $(this).stop(true,true).animate({backgroundPosition: "-223px -96px"});
    },function() {
        $(this).stop(true,true).animate({backgroundPosition: "0px -96px"});
    });
	
	$(function() {
		$("#datepicker").datepicker({ dateFormat: 'dd-mm-yy' });
	});
	
});

