$(document).ready(function(){
						   /*
	$('h1').css({fontSize:'24px'}).sifr({
		font:'/css/viner.swf',
		height:22,
		afterEach: function(t){
			$('h1.sIFR-replaced').css({fontSize:'18px'});
		}
	});
	*/
	//$('h2').css({fontSize:'20px'}).sifr({font:'/css/vivaldi.swf'});
	$('div.frow input,div.frow textarea,#kw').focus(function(){
		if($(this).attr('title') == $(this).val()){
			$(this).val('');
		}else{
			$(this).val($(this).val());
		}
	});
	$('div.frow input,div.frow textarea,#kw').blur(function(){
		if($(this).val() == ''){
			$(this).val($(this).attr('title'));
		}else{
			$(this).val($(this).val());
		}
	});
	
	$('#bookingform').submit(function(){
		if($(this).attr('action') == '/miniform.php'){
			$.post('/miniform.php', $(this).serialize(), function(data){
				$('#bookingform').html(data).attr('action', '/docontact.php').addClass('label65');
			});
			return false;
		}
	});
	
	$('#slideshow').cycle({ 
	    delay: 2000 
	});
	
	$('#nav ul').accordion({
		autoheight: false,
		event: 'mouseover',
		animated: 'easeslide',
		navigation: true
	});
});