

function makeAdditionalStyles(){
	var theLine = '';

	if(is_iphone()){
		//theLine += '#slidingsearch {display: none;}';
		//theLine += '#slidingextras {display: none;}';
		//theLine += '#slidingcontact {display: none;}';
	} else {
		//Set trackbacks condition
		if($.cookie('trackbacks')=='closed') { 
			theLine += '#trackbacks {display: none;}';
		} else {
			theLine += '#trackbacks {display: block;}';
		}
		//Set relatedposts condition
		if($.cookie('relatedposts')=='closed') { 
			theLine += '#relatedposts {display: none;}';
		} else {
			theLine += '#relatedposts {display: block;}';
		}
		theLine += '#slidingcontact {display: none;}';
		//Set recentnews condition
		if($.cookie('recentnews')=='closed') { 
			theLine += '#recentnews {display: none;}';
		} else {
			theLine += '#recentnews {display: block;}';
		}
		//Set recentposts condition
		if($.cookie('recentposts')=='closed') { 
			theLine += '#recentposts {display: none;}';
		} else {
			theLine += '#recentposts {display: block;}';
		}
	}

	theLine += '#holler_title {display: none;}';

	return theLine;
}

document.write('<style type=\"text/css\">' + makeAdditionalStyles() + '<\/style>');