$(document).ready(function() {

	$('body').hide().fadeIn('fast');

	//## Stuff for horeca
	
	if ($.cookie('tooltip') != 'dontshow') {
		$('#tooltip_top').hide().insertBefore($('#header')).delay(800).slideDown();
	}

	$('#link-notooltip').click(function() {
		$('#tooltip_top').slideUp();
		$.cookie('tooltip', 'dontshow', { expires: 90 });
		return false;
	});
	
	
	//## For bookmarking
	
	// Supported browsers
	var firefox = navigator.userAgent.toLowerCase().indexOf('firefox') >= 0 ? true : false;
	var ie = navigator.userAgent.toLowerCase().indexOf('msie') >= 0 ? true : false;
	
	if(!firefox && !ie)
		$('a.bookmark').remove();

	$('a.bookmark').click(function(e) {
		e.preventDefault();
		
		var url = this.href;
		var title = "Johan Lidby Vinhandel";
		
		if(firefox) 
			window.sidebar.addPanel(title, url, "");
		else if(ie)
			window.external.AddFavorite(url, title);
		else
			alert('Din browser stöder tyvärr inte automatisk tilläggning av bokmärken. Var god lägg till det manuellt.')
	});
	
	//## For newletter subscription form
	
	$('#id_email').val("Din e-postadress:");
	$('#id_email').focus(function() {
		if($(this).val() == "Din e-postadress:") {
			$(this).val("");
			$(this).css('color', '#575656');
		}
	});
	$('#id_email').blur(function() {
		if($(this).val() == "") {
			$(this).val("Din e-postadress:");
			$(this).css('color', '#a0a0a0');
		}
	});
	
	
		
	//## DEV
	
	$("#showgridsplan").click(function() {
		$("#gridsplan").height("100%");
		$("#gridsplan").slideToggle("fast");
	});

});

