/* Compensation scripts */
$(document).ready(function(){
	if ($.browser.browser()=="Internet Explorer" && $.browser.version.number()<=6) { /* IE6 and below */
		$("img").pngfix(); //Apply PNG transparency fix

		$("#awards-image").css("display","none"); //Hide awards image
		
		$("#client-list").css("margin-top","50px"); //Shift client list up
	}
	
	if ($.browser.browser()=="Internet Explorer" && $.browser.version.number()<=7) { /* IE7 and below */
		$("#awards h2").css("margin-top","130px");
	}
});