jQuery.fn.rdy = function(func){
	this.length && func.apply(this);
	return this;
};
jQuery(document).ready(function($){
	$('html').removeClass('no-js');

	//IE Full Background
	$(function(){
		
		var mu = $.browser;
		if (mu.msie && mu.version < 9) {  //Check if browser is IE and is older than v. 9
		
			var curBg = $('body').attr('style');
			curBg = curBg.split('(');
			curBg = curBg[1].split(')'); 

			$('<img />')
				.attr('src',curBg[0])
				.addClass('bg')
				.appendTo('body');

			$('body').removeAttr('style');

		}
	});
	

});



