// JavaScript Document
// Play well with other libraries, use jQuery instead of $
jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery('.kc_ArticlesList ul li, .submitRow input').hover(function(){
		jQuery(this).addClass('hover');									   
	},function(){
		jQuery(this).removeClass('hover');
	});
	jQuery('.kc_ArticlesList ul li').click(function(){
		window.location=jQuery(this).find("a").attr("href"); return false;										
	});
	
	// CSS zoom fix for IE6 hasLayout bugs
	if(jQuery.browser.msie && parseInt(jQuery.browser.version) == 6 && !window["XMLHttpRequest"]){
		jQuery('body').append('<style type="text/css">* {zoom: 1;}</style>');	
	}
});
