$(document).ready(function(){

$('#top_ad .cd_ad_slots').cycle({ 
    timeout:  5000 
});

  $('.customer_service_block ul li > a').click(function() {
  
    if ($(this).parent("li").children("ul").length) {
      if ($(this).parent("li").children("ul").is(':visible')) {
        $(".customer_service_block ul li ul").slideUp();
      } else {
        $(".customer_service_block ul li ul").slideUp();
        $(this).parent("li").children("ul").slideDown();
      }
      return false;    
    }
  
  });


  $('.close_button').click(function() {
    $(this).parent("div").hide();  
    return false;        
  });      


$('#other_puplications_switcher').click(function() {
    $('#other_puplications').show();  
    return false;        
});     

$('body').click(function() {
    $('#other_puplications').hide();   
});

$('#part_nwng a').click(function() {
    $('#top_ad').show();  
    return false;        
});  

$('#tags').css( "margin-top", $('#excerpt').css( "height"));  

$('.tabs a').click(function(){
	switch_tabs($(this));
	return false; 	
});

switch_tabs($('.defaulttab'));

function switch_tabs(obj)
{
	$('.tab-content').hide();
	$('.tabs a').removeClass("selected");
	var id = obj.attr("rel");
 
	$('#'+id).show();
	obj.addClass("selected");
	
}

});
