 $(function(){
	if ($.browser.msie) {
		//$('.left_content .box:last-child').addClass('last_box');
		
	$('ul.links li:first-child').addClass('first_el');
	$('input:text').addClass('text_input');
	$('input:submit').addClass('submit_input')
		.mouseover(function() {$(this).addClass('submit_hover');})
		.mouseout(function() {$(this).removeClass('submit_hover');});
	$('div.box').mouseover(function() {$(this).addClass('box_hover');})
		.mouseout(function() {$(this).removeClass('box_hover');});
	$('#menu > li')
			.mouseover( function() { $(this).addClass('over');})
			.mouseout(function() { $(this).removeClass('over');});
	};
			
			
	
	$('.right input:first').addClass('first-input');
	
	//input
	$("input[@type=text], input[@type=password]").focus(function(){ $(this).val(""); });
	
	/*font-size*/
	var f_size = '75%';
	var size = new Array();
	var size = [f_size,'70%','75%','86%'];
	
	if (!$.cookie('font_size')) $.cookie('font_size',size[2]);
	var f_size = $.cookie('font_size');
		
	$('body').css("font-size", size[0]);	
		

	$('#little').click(function() {
		$.cookie('font_size',size[1]);
		$('body').css("font-size", size[1]);
	});
	$('#medium').click(function() {
		$.cookie('font_size',size[2]);
		$('body').css("font-size", size[2]);
	});
	$('#large').click(function() {
		$.cookie('font_size',size[3]);
		$('body').css("font-size", size[3]);
	});
	
	
		
 });

function Destination() {
	var dest = document.getElementById("destination").value;
	if (dest!="") document.location.href="http://scarabee.rodekiwi.nl/"+dest;
}
 