// Some JQuery to enhance the theme

var $j = jQuery.noConflict();

var navDuration = 150; //time in miliseconds

var navJumpHeight = "0.45em";

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

	//$j('.someclass').after($j('some new html'));
	
	/*$j(".someclass").each(function (i) {
	
		$j(this).html($j(this).html().replace('some html','some new html'));

	});*/

	$j('ul>li:first-child').addClass('first');
	
	$j('ul>li:last-child').addClass('last');
	
	$j('.home-top-right li:even').addClass('odd');
	  
	$j('.home-top-right a').hover(function() {
	
		$j(this).stop().animate({ 'padding-right': '20px' }, 200);
		
	}, function() {
	
		$j(this).stop().animate({ 'padding-right': '0px' }, 200);
		
	})
	
});
