
$(document).ready(function () {
	$('#carouselnav').fadeIn("slow");
	$('#jCarouselLiteDemo').fadeIn("slow");
	$('#description').fadeIn("slow");
	$('#contact_info').fadeIn("slow");
	$('#sectionmenu').show();
	$('#mainmenu').show();
	$('#footermenu').show();
	$('a#movie1').click(function () {
		alert('this will make a movie load');
	});
	

	$('.movieimagereplace').hover(function() { // what to do when mouseover	
		var hoverText = '<span class="hoverMovieText">Play movie</span>';
		$(this).addClass("hover");
		$(this).append(hoverText);
		$(this).children('.movieimage').fadeTo("fast", 0.3);
	}, function () { // what to do when mouseout
		$(this).removeClass("hover");
		$(this).children('.hoverMovieText').remove();
		$(this).children('.movieimage').fadeTo("fast", 1.0);
	});
	
	

});


$(function() {
	$(".carousel").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev",
		easing: "easeinout",
		mouseWheel: false,
		speed: 300,
		visible: 1,
	    btnGo:
	    [".carouselnav .1", ".carouselnav .2",
	    ".carouselnav .3", ".carouselnav .4",
	    ".carouselnav .5", ".carouselnav .6",
	    ".carouselnav .7", ".carouselnav .8",
	    ".carouselnav .9", ".carouselnav .10",
	    ".carouselnav .11", ".carouselnav .12"],
		auto: false

	});
});