﻿$().ready(function(){
	
	var os;
	var title = $('div#quick_links:contains("Online Services")');
	var options;
	var gobtn;
	var foundonlineservices = false;
	
	if (title.length > 0) {
		title.addClass('onlineservices-content');
		options = title.next('select');
		if (options.length > 0) {
			options.addClass('onlineservices-content');
			gobtn = options.next('a');
			if (gobtn.length > 0) {
				gobtn.addClass('onlineservices-content');
				foundonlineservices = true;
			}
		}
	}
	
	if (foundonlineservices) {
		os = $('<div class="online-services">');
		$('.onlineservices-content').wrapAll(os);
		gobtn
			.html($('<img src="images/reskin2009/gobtn.gif" valign="bottom">'));
	}
	
});
