﻿$(document).ready(function(){ 

	// DISABLE CACHE
	$.ajaxSetup ({
		cache: false
	});

	// FIX FOR SAFARI & CHROME
	if (document.readyState != "complete"){
		setTimeout( arguments.callee, 100 );
		return;
	}

	// VIDEOS ON HOME PAGE
	$('#videos div').hover(
	
		function () {$("img", this).stop().animate({top:"-180px"},{queue:false,duration:300});},
		function () {$("img", this).stop().animate({top:"0px"},{queue:false,duration:300});}
		
	);

	$("#videos a").fancybox({
		maxWidth	: 800,
		maxHeight	: 600,
		fitToView	: false,
		width		: '70%',
		height		: '70%',
		autoSize	: false,
		closeClick	: false,
		openEffect	: 'none',
		closeEffect	: 'none'
	});

	// SEARCH BOX
	var searchlang = $("#menu").attr("class");
	$("#searchBox").autocomplete("main-search.asp?L="+searchlang, {
		width: 180,
		selectFirst: false
	});

	// CAROUSEL
	$('#mycarousel').jcarousel();
	var temp = $("#carousel-title").text();
	$("#mycarousel li").hover(
		function () {
			$("#carousel-title").text($("img",this).attr("title"));
			$("#carousel-description").text($("img",this).attr("bar"));
		}, 
		function () {
			$("#carousel-title").text(temp);
			$("#carousel-description").text("");
		}
	);

}); 
