$().ready(function(){
				   
	//var $image=$("#bodyText img");
	//var $clasIn= $image.getClass();
	
	//$image.
		
	
	var	$imagesWithShrinkEffect=$('.scContent img').filter(function(index) { // returns a set of img tags that don't have the class "noShrink"
  				if($(this).hasClass('noShrink')) return 0;
				else return 1;
	});
	
	$imagesWithShrinkEffect.width("40%").height("auto");
	$imagesWithShrinkEffect.css({cursor:"pointer"});
			   
		$imagesWithShrinkEffect.toggle(function(){
		$(this).width("auto").height("auto");					  
	},function(){
		$(this).width("40%").height("auto");					  
	});

	
//	$("#Layer1").click(function(){
//		var test="";	
//		$("#Layer2").hide();
//		$("#Layer13").hide();
//		$("#topMenu").css({fontSize:"12pt", fontWeight:"bold"});
//		
//		$(".scContent").css({height:"640px"});
//		
//		
//	});
	
	var $topButtons=$("#topMenu a");
	
	//$topButtons.addClass('buttons');

	$topButtons.hover(function(){
			$(this).toggleClass("enbolden");
		},function(){

			$(this).toggleClass("enbolden");
	
		});


	
	


});