jQuery.noConflict();

/*
 *  Outer Plugin
 */
jQuery.fn.outerHTML = function(s) {
	return(s)? this.before(s).remove(): jQuery("<p>").append(this.eq(0).clone()).html();
};
/*
 * Full replace function
 */
function fullReplace(src, target, opp) {
	while(src.indexOf(target) > -1)
	{
	   src = src.replace(target, opp);
	}
	return src;
}

jQuery(function() {
	
});

jQuery(document).ready(function() {
	jQuery('ul.submenu li').addClass('last');
	jQuery('.sidewidget .categories ul').append('<li>&nbsp;</li>');
});

jQuery(window).load(function(){
	
});




