﻿$(document).ready(function(){

//		$('.loginbar').delay(0).fadeIn(1000);



		$("a").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to 100% when the page loads
		$("a").hover(function(){
		$(this).fadeTo("fast", 0.7); // This should set the opacity to 60% on hover
		},function(){
		$(this).fadeTo("slow", 1.0); // This should set the opacity back to 1000% on mouseout
		});



		$('.topslideshobar').cycle({ 
			fx:      'fade',
			timeout:  1000,
			speed:    1200,
			next:   '#nextSlide', 
		    prev:   '#prevSlide',
			pause:  1 
		});		


		$('.slideshobar').cycle({ 
			fx:      'fade',
			timeout:  1000,
			speed:    1200,
	//		next:   '.leftNewsBar', 
//			easing: 'backinout', 
			pause:  1 
		});		




});

