$(document).ready(function(){
	$('.footerLeft ul li:last-child').css('background','none');
	$('#navigation ul li:last-child').addClass('lastList');
	$('.homeMiddleContent ul li:last-child').css('border' , '0');
	$('.homeMiddleContent ul li:last-child').css('margin-bottom' , '0');
})

// Header Slider
$(document).ready(function() {
    $('#slider').cycle({
		fx: 'scrollHorz',
			prev:   '#prev', 
			next:   '#next', 
			timeout: 10000
	});
});



//// Drop Down
$(document).ready(function(){

$('#navigation ul li').hover(
function () {
	$(this).addClass('active');
	$(this).children('ul').fadeIn('fast');
},
function () {
	$(this).removeClass('active');
	$(this).children('ul').fadeOut();
}
);
});

//FAQ
$(document).ready(function() {
	$('h3').each(function () {
	var id = $(this).attr('id');
	var answer = '#' + id + 'a';
	
	$(this).bind('click', function() {
	  if ($(answer).is(':visible')) {
		$(answer).hide('fast');
	  } else {
	   $(answer).show('fast');
	  }
	});
  });
});
