$(document).ready(function() {
   $('input.empty').focus(function() {
			if($(this).val() == $(this).attr('title')){
				$(this).val("");
			}
		});
	
	$('a.changephoto').hover(function(){
		//alert($(this).attr('id'));
		nieuwe_foto = $(this).attr('id');	
		$('#grotefoto').html('<img src="http://middeldorp.wedev.eu/upload/file/'+nieuwe_foto+'_2.jpg" />');
	});
	
	$("#print").click(function() {
         printElem({ pageTitle: 'Middeldorp Bouwmachines' });
     });
     
	function printElem(options){
		$('#content').printElement(options);
	}
	
});
