// <![CDATA[
$(function() {

	// Slider
	$('#coin-slider').coinslider({width:970,height:384,opacity:1});
	
	$('.topnav ul').children('li').each(function() {
		$(this).children('a').html('<span>'+$(this).children('a').text()+'</span>'); // add tags span to a href
	});

    // Main menu
	$('.menu-item').click(function() {
	  window.location = $(this).find('a:first').attr('href');
	});
    var dropdown_level = 0;
    $('.sub-menu').parent().find('a:first').addClass('nav_sub_arrow');
    $('#nav_wrapper .menu').children('li').children('a').addClass('top_level');
    $('#nav_wrapper .menu').children('li').children('a').removeClass('nav_sub_arrow');
    $('#nav_wrapper .menu-item').hover(function(){
      if(dropdown_level == 0){
            $('#nav_wrapper .menu').find('a').removeClass('nav_sub_arrow_active');  
            //$('#nav_wrapper .menu').find('a').addClass('nav_sub_arrow_passive');  
          $(this).addClass('main_hover_left');
          $(this).children('a').addClass('main_hover_right');
            $('.sub-menu').parent().find('a:first').addClass('nav_sub_arrow');
        $('#nav_wrapper .menu').children('li').children('a').addClass('top_level');
        $('#nav_wrapper .menu').children('li').children('a').removeClass('nav_sub_arrow');
      }                                                                                             
      $(this).find('.sub-menu:first').stop(true,true).slideDown(200).show();        
      $(this).find('a:first').addClass('nav_sub_arrow_active');
      $('#nav_wrapper .menu').children('li').children('a').removeClass('nav_sub_arrow_active');       
      dropdown_level++;
    },function(){            
      $(this).find('.sub-menu:first').stop(true,true).slideUp(0);
      $(this).find('a:first').removeClass('nav_sub_arrow_active');
      dropdown_level--;
       if(dropdown_level == 0){
        $(this).removeClass('main_hover_left');
          $(this).children('a').removeClass('main_hover_right');
       }
    });
	
	
	// radius Box   
	$('.wtitle').css({"border-radius": "7px", "-moz-border-radius":"7px", "-webkit-border-radius":"7px"});
	$('.post_leave').css({"border-radius": "7px", "-moz-border-radius":"7px", "-webkit-border-radius":"7px"});
	$('.wp-pagenavi a, .wp-pagenavi .current').css({"border-radius": "7px", "-moz-border-radius":"7px", "-webkit-border-radius":"7px"});
	$('.topnav li a').css({"border-radius": "7px", "-moz-border-radius":"7px", "-webkit-border-radius":"7px"});
	$('.blog_body a ').css({"border-radius": "7px", "-moz-border-radius":"7px", "-webkit-border-radius":"7px"});

});

Cufon.replace('h1, h2, h3,.post-commets a',{ hover:true } );
// ]]>
