$(document).ready(function(){
	//add class to body if IE6 because it's a toolshed
	if(jQuery.browser.msie && (jQuery.browser.version < 7)){
		$("body").addClass("stylesIE6");
	}else if(jQuery.browser.msie){
		$("body").addClass("stylesIE7");
	}else if(jQuery.browser.safari){
		$("body").addClass("stylesSafari");
	}else if(jQuery.browser.mozilla){
		$("body").addClass("stylesFirefox");
	}
	
	//apply border-radius to appropriate images
	$(".stylesSafari .borderRadius, .stylesFirefox .borderRadius").each(function(i,val){
		var imgSrc=$(val).children('img').attr('src');
		$(val).css('backgroundImage','url('+imgSrc+')');
		$(val).children('img').css('display','none');
	});
	
	$(".contactInfoClick").click(function(){
		$("#contactInfo-highlight").fadeIn('fast',function(){
			$("#contactInfo-highlight").fadeOut('slow');
		});
	});
});
