﻿// jQuery
$(document).ready(function() {

	// definice barev a délky trvání efektů
	var hover_in_duration = 'fast';
	var hover_out_duration = 'slow';
		
	// efekt pro obrázkové odkazy
	$('.homelinx h2.homelink a').hover(function() {
		$(this).find('span').stop().animate({
			color: '#35A8C2'
		}, hover_in_duration);
		$(this).find('img').stop().animate({
			opacity: 0.7
		}, hover_in_duration);
	}, function() {
		$(this).find('span').stop().animate({
			color: '#473112'
		}, hover_out_duration);
		$(this).find('img').stop().animate({
			opacity: 1
		}, hover_out_duration);
	});
	$('.homelinx h2.homelink a').mousedown(function() {
		$(this).find('span').stop().animate({
			color: '#267A8C'
		}, 100);
		$(this).find('img').stop().animate({
			opacity: 0.9
		}, 100);
	});
	$('.homelinx h2.homelink a').mouseup(function() {
		$(this).find('span').stop().animate({
			color: '#35A8C2'
		}, 100)
		$(this).find('img').stop().animate({
			opacity: 0.7
		}, 100);
	});

});

