$(document).ready(function() {

	$('#main').not('.pageContact #main').jScrollPane({scrollbarWidth: 22});
	
	$('#homepageMenu li,  #intro a, .contactForm input.image').mousedown(function() {
		$(this).css({position: 'relative', top: '1px', left: '1px', opacity: '0.7'});
	}).mouseup(function() {
		$(this).css({top: '0', left: '0', opacity: '1'});
	});
	
	/*
	if (!$.browser.msie) {
		$('a[href]').hover(function() {
			$(this).stop().fadeTo(200, 0.7);
		}, function() {
			$(this).stop().fadeTo(200, 1);
		});
	}
	*/
	
	/*
	$('#homepageMenu li').hover(function() {
		$(this).stop().fadeTo(200, 0.7);
	}, function() {
		$(this).stop().fadeTo(200, 1);
	});
	*/
	
});
