$(document).ready(function(){

var browser=navigator.appName;
var b_version=navigator.appVersion;
var version=parseFloat(b_version);

	
	if ((browser=="Microsoft Internet Explorer 6") && (version>=4)){

		$("#imgSlider").css("overflow","scroll");
		$(".imgCounter").css("display","none");		
		}
    
	if (browser!="Microsoft Internet Explorer 6"){
		    $(function() {
		        $('.imgBlock a, .rightColumnBottom a.openShadow, a.openShadow, .courses a').lightBox({fixedNavigation:true});
		    });
    		 		
			jQuery(window).bind("load", function() {
				jQuery("div#imgSlider").codaSlider()
			});
	}

});
	
	