$(document).ready(function()
{
	/* Coockie functions */
	$('a#lang1').click(function () {
        $.cookie("language", "hr", {
            path: '/',
            expires: 30
        })
    });
    $('a#lang2').click(function () {
        $.cookie("language", "de", {
            path: '/',
            expires: 30
        })
    });
    $('a#lang3').click(function () {
        $.cookie("language", "en", {
            path: '/',
            expires: 30
        })
    });
	$('a#lang4').click(function () {
        $.cookie("language", "it", {
            path: '/',
            expires: 30
        })
    });
	
	/* Show/Hide effect for the icons */
	$('#text1').hide();
	$('#text2').hide();
	$('#text3').hide();
	$('#text4').hide();
	$('#text5').hide();
	$('#text6').hide();
	$('#text7').hide();
	
	$('#icon1').mouseover(function(){$('#text1').show('');return false;});
	$('#icon2').mouseover(function(){$('#text2').show('');return false;});
	$('#icon3').mouseover(function(){$('#text3').show('');return false;});
	$('#icon4').mouseover(function(){$('#text4').show('');return false;});
	$('#icon5').mouseover(function(){$('#text5').show('');return false;});
	$('#icon6').mouseover(function(){$('#text6').show('');return false;});
	$('#icon7').mouseover(function(){$('#text7').show('');return false;});
	
	$('#icon1').mouseout(function(){$('#text1').hide('');return false;});
	$('#icon2').mouseout(function(){$('#text2').hide('');return false;});
	$('#icon3').mouseout(function(){$('#text3').hide('');return false;});
	$('#icon4').mouseout(function(){$('#text4').hide('');return false;});
	$('#icon5').mouseout(function(){$('#text5').hide('');return false;});
	$('#icon6').mouseout(function(){$('#text6').hide('');return false;});
	$('#icon7').mouseout(function(){$('#text7').hide('');return false;});
	
	$('.images a').lightBox();
});

$(window).load(
    function() {
        $('div#gallery ul').cycle({ fx:'fade', pause: 2 }); //Gallery slideshow
    }
);
