jQuery(document).ready(function($){


/*--- [start] equal height columns with jquery---*/
function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

$(document).ready(function() {
	equalHeight($('#tab_1 div.box'));
	equalHeight($('#tab_2 div.box'));
	equalHeight($('#tab_3 div.box'));
	equalHeight($('div.bottom div.widget-container'));
});
/*--- [end] equal height columns with jquery---*/

$('div.paging ul li').hover(function(){
	$(this).addClass('hover');
	$(this).children('ul').addClass('hovered');}, 
	function(){
		$(this).removeClass('hover');
		$(this).children('ul').removeClass('hovered');
	});

$(function () {
    var tabContainers = $('div.tabs > div');
    
    $('div.tabs ul.tabs_top a').click(function () {
        tabContainers.hide().filter(this.hash).show();
        
        $('div.tabs ul.tabs_top a').removeClass('selected');
        $(this).addClass('selected');
        
        return false;
    }).filter(':first').click();
});

$('div.paging ul li').hover(function(){
	$(this).children('ul').fadeIn('fast')}, function(){
		$(this).children('ul').fadeOut('fast');
	});

$('div.bottom div.widget-container ul').each(function(){
	$(this).children('li').last().addClass('bot_li_last');
});


































});
