jQuery(document).ready(function($){

	$('ul#nav').dropdownify();

	$('.infodetail').hide(1);
	
	$(function() {
	    $("#middle").jCarouselLite({
	        btnNext: "#middle_right",
	        btnPrev: "#middle_left"
	    });
	});

	$("#middle_left").hover(
		function() {
		$(this).stop().animate({"opacity": "0"}, "normal");
	},
	function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
	});

	$("#middle_right").hover(
		function() {
		$(this).stop().animate({"opacity": "0"}, "normal");
	},
	function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
	});

	//Hover effects
  	var btn = $('.btn', this).css('opacity', 1);

  	$(".btn").hover(
		function() {
			btn.css('backgroundPosition', 'left -17px');
		},
		
		function() {
			btn.css('backgroundPosition', 'left 0px');
  	});

  	$('.readmore').click(function() {
  		//$('.infodetail').hide('fast');
  		$(this).next('div.infodetail').slideToggle('fast');
  	});

  	$(function() {
		var zIndexNumber = 1000;
		$('div.fx').each(function() {
			$(this).css('zIndex', zIndexNumber);
			zIndexNumber -= 10;
		});
	});

});
