﻿$(document).ready(function() {

	// function for Cufon replace
	Cufon.replace('#topPanel h2')('#contentPanel h1')('#contentPanel h2')('.leftPanel h3')('.bottom-in h2')('.portfolioItem h3');

	//function for sliding references
	jQuery(document).ready(function() {
		jQuery('#slidingReferences').jcarousel({
			auto: 5,
			wrap: 'last',
			scroll: 1
		});
	});

	// function for show/hide call panel
	$("#call").hover(function() {
		$("#call").animate({
			height: "189px",
			top: "-200px"
		}, 2000);
		$(".show").css('display', 'none');
		$("#hide").show(2000);
	});
	$("#hide").click(function() {
		$("#call").animate({
			height: "30px",
			top: "-41px"
		}, 1000);
		$("#hide").css('display', 'none');
		$(".show").show(2000);
	});

});
