$(document).ready(function(){	
	
	var clearMePrevious = '';
	
	// clear input on focus
	$('.clearMeFocus').focus(function(){
		if($(this).val() == $(this).attr('title')){
			clearMePrevious = $(this).val();
			$(this).val('');
		}
	});

	// if field is empty afterward, add text again
	$('.clearMeFocus').blur(function(){
		if($(this).val() ==''){
			$(this).val(clearMePrevious);
		}
	});
	
	//leveän taustakuva
	$('#wide_image').innerfade({
		speed: 'slow',
		timeout: 5000,
		type: 'random',
		containerheight: '474px'
	});
	
	//siisti scrolli
	/*
	$(function()
		{
			// this initialises the scollpanes on the page.
			$('.scroll_text').jScrollPane();
		}
	);
	*/
	
	//siisti select boxi
	/*
	$(function()
		{
			$('#city, #restaurant').sSelect();
		}
	);
	*/

});
