$(document).ready(function()
{	  
	
	$('#home-events li, .new-articles li, .home .presenting-box')
        .addClass('jsclick')
        .click(function(e){
	       window.location = $('h3 a', this).attr('href');
        })
        .hover(function(){
            $('h3 a', this).addClass('focus');//.focus();
            $('.desc', this).addClass('hover-desc');
        }, 
        function(){
            $('h3 a', this).removeClass('focus')//.blur();
            $('.desc', this).removeClass('hover-desc');   
    });
    
    $('.event-list li')
        .addClass('jsclick')
        .click(function(e){
	       window.location = $('.col-right a', this).attr('href');
        })
        .hover(function(){
            $(this).addClass('hover');
        }, 
        function(){
            $(this).removeClass('hover'); 
    });
    
    $('.content table').each(function(){
        $(this).wrap('<div class="wrap-table"></div>');
        $('tbody tr:nth-child(odd)', this).addClass('odd');
        $('td:first-child, th:first-child', this).addClass('first');
    });
    
    // Init pdBox
    $('.thickbox').pdBox({minWidth: 400});
    
	
});
