$(document).ready(function(){
		$(".smBox").css('border','none').corner("10px");
		$(".bigBoxTop, .rWidTop").corner("3px top");
		$("#kWidget").corner("3px");
		$(".tab").not(".active").hover(
			function(){
			$(this).addClass("active");
			}
			,
			function(){
			$(this).removeClass("active");
			}
		);
		$(".navMenu").hover(
			function(){
			$(this).children(".subMenu").show();
			}
			,
			function(){
			$(this).children(".subMenu").hide();
			}
		);
		
	
});		

function load_img(src,alt,title,linkhref){
			var img = new Image();
			$(img).load(function(){
				var newEle = $(document.createElement('div'));  // Possibly faster than jquery core method
				$(newEle).append(this).appendTo('#featArticles');
				var string = '<a href="'+linkhref+'" alt="'+alt+'" title="'+title+'"></a>';
				$(this).wrap(string);
				$('#featArticles').cycle('stop').cycle({fx: 'fade', speed: 1500, pause: 1});
		}).attr('src',src);
		};