$(document).ready(function(){

	$("#mainNav li:first-child").addClass("first-child");
	
	$('#mainNav li').bind("mouseenter",function(e){
		$('ul', this).slideDown(100);
	}).bind("mouseleave",function(){
		$('ul', this).slideUp(0);
	});
	
	$(".magnify").colorbox();
	$(".video").colorbox({iframe:true, innerWidth:480, innerHeight:300});
	// $(".video").colorbox({iframe:true, scrolling:'false', width:"464px", height:"335px"});
	$("#headingTeatri a").colorbox({
		initialWidth:"800px", initialHeight:"500px",innerWidth:"800px",innerHeight:"500px"
	});

});

function toggleText(p1, p2){
    $('input'+'#'+p1).focus(function () {
        if (this.value == p2) {this.value = '';}
    });
    $('input'+'#'+p1).blur(function () {
        if (this.value == '') {this.value = p2;}
    });
}

$(function(){
	$("#slideshowContent").carousel({
		autoSlide: true,
		autoSlideInterval: 5000,
		delayAutoSlide: 5000,
		loop: true,
		dispItems: 1,
		pagination: true
	});
});
