$(document).ready(function(){
	
	if(/MSIE (5\.5|6)/.test(navigator.userAgent) || typeof filters == 'unknown') return;
	if(!jQuery.support.boxModel) return;
	if(!jQuery.support.opacity) return;
	
	$(".workBox").css("opacity", "0.8");
	
	$(".workBox").hover (
		function() {
			$(this).fadeTo(200, "0.99");
		},
		function() {
			$(this).fadeTo(200, "0.8");
		}		
	);
	
	$("a#toTop").removeAttr("href");
	$("a#toTop").css("cursor", "pointer");

	$("a#toTop").click (
		function() {
			$('html,body').animate({scrollTop: 0}, 500);
		}
	);
		
});
