jQuery.noConflict();
jQuery(document).ready(function(){
    jQuery("ul.idTabs2.dark li").hover(function(){
        jQuery(this).animate({
            backgroundColor: "#292929",
            color: "#9EF"
        }, {
            duration: "slow"
        })
    }, function(){
        jQuery(this).animate({
            backgroundColor: "#222",
            color: "#FFF"
        }, {
            duration: "normal"
        });
    });
	jQuery("#home .csc-textpic-imagecolumn, #home .csc-textpic-image").hide();
	
    jQuery(".news-latest-item a").click(function () {
      var uid = jQuery(this).attr("rel");
      jQuery(uid).slideToggle();
      return false;
    });

    
});
