/*---------------------------------------------------------------- 
  Copyright: 
  Copyright (C) 2009 - 2011 danielfajardo web
  
  License:
  GPL Software 
  
  Author: 
  danielfajardo - http: //wwww.danielfajardo.com
---------------------------------------------------------------- */

jQuery(document).ready(function(){

	// Pro Version
	jQuery('#menu-header ul li a').each(function (){
		var $splited = jQuery(this).html().split(' || ');
		if( $splited[1] ) {
			jQuery(this).html( '<div class="menu-item-splited"><div class="title">' + $splited[0] + '</div><div class="subtitle">' + $splited[1] + '</div></div>' );
			jQuery('div.title a').replaceWith($splited[0]);
			jQuery('div.subtitle a').replaceWith($splited[1]);
		}
	});
	
	// Pro Version
	jQuery('#menu-header li.icon-home a').html( '<span class="icon-home"></span>' );

});
