// JavaScript Document

/**************************************Navigation Bar Control***********************************/
 $(document).ready(function(){
$('#header').html("<img src='images/homeheader.jpg' width='1024' height='284' alt='' title='' /><img src='images/homeheader2.jpg' width='1024' height='284' alt='' title='' /><img src='images/homeheader3.jpg' width='1024' height='284' alt='' title='' /><img src='images/homeheader5.jpg' width='1024' height='284' alt='' title='' /><img src='images/homeheader6.jpg' width='1024' height='284' alt='' title='' /><img src='images/homeheader7.jpg' width='1024' height='284' alt='' title='' /><img src='images/homeheader8.jpg' width='1024' height='284' alt='' title='' /><img src='images/homeheader9.jpg' width='1024' height='284' alt='' title='' /><img src='images/homeheader10.jpg' width='1024' height='284' alt='' title='' /><img src='images/homeheader11.jpg' width='1024' height='284' alt='' title='' /> " );
$('#navlist li a').css({'border' : 'none'});
$('#navlist li a#current').css({'border' : 'none'});
$('#navline').css({ "left": ($("#navlist #active a").position().left + ($("#navlist #active a").width() / 2)) });
$('#navline').css({ "display": "block"});
$('.grid3').css({ "margin-left": "-10px"});
$('.grid2').jScrollPane({scrollbarWidth:10,scrollbarMargin:0,dragMaxHeight:35,reinitialiseOnImageLoad:true});

							
jQuery(function($){
	var $nav = $('#navline');
	$('#navlist li a').hover(function(){
	var $this = $(this);
	$nav.stop().animate({ "left": ($this.position().left + ($this.width() / 2) ) }, 500, "swing", null);});
	$('#navlist').mouseout(function(){
	var $this = $("#navlist #active a");
	$nav.stop().animate({ "left": ($this.position().left) + ($this.width() / 2) }, 800, "swing", null);});
	});	

$('#header').cycle({ 
    fx:     'fade',
	speed:  10000,
    random:  1 
});

$('.news1').hide();
$('.news2').hide();
$('.gamma1').click(function(){
	$('.news1').slideToggle(900);
});
$('.gamma2').click(function(){
	$('.news2').slideToggle(900);
});



});


