
	$(document).ready(function(){
		
		$(".lightbox").hover(function() {
			$(this).animate({
				opacity:.5
			},200);
		}, function() {
			$(this).animate({
				opacity:1
			},200);
		});
	
		
		$('#slider').cycle({ 
			fx:     'scrollLeft', 
			timeout:  9000,
			next:  '#next',
			prev:  '#prev',
			speed:1000
		});
		
	});
	
	function scrollTo(id) {
	
		$('html, body').animate({
			scrollTop: $(id).offset().top
		}, 1000);

	
	}

	function MM_openBrWindow(theURL,winName,features) { //v2.0
	  var features=features+",status=yes";
	  window.open(theURL,winName,features);
	}
	

