
  $(window).load(function () {
  $(".header").fadeIn(2000); 
  $("#quick").fadeIn(2000); 

  $(".content").fadeIn(1000); 
  });  



$(document).ready(function(){
$(".drop").click(function(){
    $(".rev").slideToggle("slow");
  });
});



	   $(document).ready(
				function(){
					$('#news').innerfade({
						animationtype: 'slide',
						speed: 750,
						timeout: 2000,
						type: 'random',
						containerheight: '1em'
					});
					
					$('ul#slide2').innerfade({
						speed: 1000,
						timeout: 5000,
						type: 'sequence',
						containerheight: '360px'
					});
					
					$('.fade').innerfade({
						speed: 1000,
						timeout: 6000,
						type: 'random_start',
						containerheight: '1.5em'
					});
					
					$('.adi').innerfade({
						speed: 'slow',
						timeout: 5000,
						type: 'random',
						containerheight: '150px'
					});

			});







$(document).ready(function(){

	$("h2").append('<em></em>')

	$("ul#imgthumbs li a").click(function(){
	
		var largePath = $(this).attr("href");
		var largeAlt = $("img", this).attr("alt");
		
		$("#largeImg").attr({ src: largePath, alt: largeAlt });
		
		$("h2 em").html("" + largeAlt +""); return false;
	});
	
});


