$(document).ready(function() {
	$("#gallery").css("overflow", "hidden");	//hide overflow in jquery enabled browser
	$("ul#slides").cycle({
		fx: 'fade',
		pause: 1,
	}); 										// sets the image cycling for the featured works gallery
	$('#contact').click(function(){
		$('html, body').animate({
			scrollTop: $("#contactForm").offset().top - 200}, 1500);
	});											// scrolls screen down to contact form
	$('.backToTop').click(function(){
		$('html, body').animate({
			scrollTop:0}, 1000);
     });										// scrolls screen back to top
	
//	$(".workThumb").hover(
//		function() {
//				$(this).stop().animate({"opacity": ".5"}, "fast");
//		},
//		function() {
//				$(this).stop().animate({"opacity": "1"}, "fast");
//	});											// controls image opacity on mouse over
	
});

