/**
	izilla_gup v1.0.0
	
	Gets "true" url parameters and adds them as classes to html tag
	eg. news-item.aspx?lightbox=true
	
	No dependencies	
**/

(function() {
	var rx = /(&|\?)(\w+)=true/gi;
	var str = window.location.href;
	var m;

	while (m = rx.exec(str)) {
		document.getElementsByTagName('html')[0].className += ' ' + m[2];
	}	
})();
