$(document).ready(function () {

	var clearMePrevious = 'Search...';

	// zoekfunctie value weghalen
	$('input#search').focus(function()	{
		if($(this).val()==$(this).attr('title')){
			clearMePrevious = $(this).val();
			$(this).val('');
		}
	});

	// zoekfunctie value herstellen
	$('input#search').blur(function() {
		if($(this).val()=='') {
			$(this).val(clearMePrevious);
		}
	});

	//var ih = $('.image-headers-container'); //var voor ticker
	var $container = $(".single-post-elements").cycle({
	fx: 'scrollLeft',
	timeout: 0,
	speed: 1200,
	width: 370,
	fit: 1,
	height: 200,
	pager:  '.woningaanbod_detail_thumblist',
	pagerAnchorBuilder: function(idx, slide){
			return '<li><a href="#"><img src="' + slide.src + '" width="40" height="40" /></a></li>'; 
		}
	});
	
});
