$(document).ready(function() {


	$("#about-me").mouseover(function(){
		$("#about-me").attr({ 
          src: "images/aboutme_hover.jpg"
        });
	});
	
	$("#about-me").mouseout(function(){
		$("#about-me").attr({ 
          src: "images/aboutme.jpg"
        });
	});

	$("#services").mouseover(function(){
		$("#services").attr({ 
          src: "images/services_hover.jpg"
        });
	});
	
	$("#services").mouseout(function(){
		$("#services").attr({ 
          src: "images/services.jpg"
        });
	});

	$("#web-development").mouseover(function(){
		$("#web-development").attr({ 
          src: "images/webdevelop_hover.jpg"
        });
	});
	
	$("#web-development").mouseout(function(){
		$("#web-development").attr({ 
          src: "images/webdevelop.jpg"
        });
	});

	$("#contact-me").mouseover(function(){
		$("#contact-me").attr({ 
          src: "images/contact_hover.jpg"
        });
	});
	
	$("#contact-me").mouseout(function(){
		$("#contact-me").attr({ 
          src: "images/contact.jpg"
        });
	});
	
	var version = navigator.appVersion;
	if(navigator.appName=="Microsoft Internet Explorer"){
		if(version.search("MSIE 7.0") > 0 || version.search("MSIE 6.0") >0){
			$('#footer-1 li').addClass('ie-padding');
			$('#footer-2 li').addClass('ie-padding');
			$('#footer-3 li').addClass('ie-padding');
		}
	}
});