
$(function() {

	try {
		$.sifr({
			path: 'http://static.carola.com/data/jquery/sifr/',
			save: true
		});
		$('h1').sifr({ font: 'Avenir LT 35 Light' });
		$('h2').sifr({ font: 'Avenir LT 35 Light' });
		$('h3').sifr({ font: 'Avenir LT 35 Light' });
	} catch(err) {
		return true;
	}

});

$(document).ready(function(){

	$("body.photos #content_main_full .content .row .section:last-child").css("marginRight", "0");
	$("body.videos #content_main_full .content .row .section:last-child").css("marginRight", "0");

	$('body.tour #content #content_main_double .content table tbody tr:odd').addClass('odd');
	$('body.tour #content #content_main_double .content table tbody tr:even').addClass('even');


	// Empty input-box'es default value
	$('#content_left form.loginbox input.cleardefault').focus(function () {
		if ($(this).val() == $(this).attr("title")) {
			$(this).val("");
		}
	}).blur(function () {
		if ($(this).val() == "") {
			$(this).val($(this).attr("title"));
		}
	});

})


