$(document).ready(function(){

	$('.employeePictures').hover(
      function () {
        $(this).children('.employeePictureBig').show();
		$(this).css({ cursor:"help" });
      }, 
      function () {
        $(this).children('.employeePictureBig').hide();
      }
    );

//if($.browser.msie){
	

/*

	$("img.employeePictureSmall").load(function () {
		$(this).show();
    });
		
	$("img.employeePictureSmall").error(function(){
		$(this).hide();
	});
*/
//}
	
});