function yellowiseButtonsIe6() {
        var x = document.getElementsByTagName("input");
        for (i = 0; i < x.length; i++) {
                if (((x[i].type == 'button') || (x[i].type == 'submit') || (x[i].type == 'reset'))) {
                        if (x[i].className != "game" && x[i].className != "prn_submit") {
                                x[i].className = "buttons";
                        }
                }
        }
}

$(document).ready(function() {
        $('.nice_tooltip').each(function()
                { 
                        $(this).qtip(
                                {
                                        content: $(this).attr('title').replace(/(\r\n|[\r\n])/g, "<br />"),
                                        style: { 
												tip: { corner: 'topLeft',

														size: {
															x: 20, // Be careful that the x and y values refer to coordinates on screen, not height or width.
															y : 20 // Depending on which corner your tooltip is at, x and y could mean either height or width!
															}
													},
												  width: 200,
												  padding: 5,
												  background: '#cae2ee',
												  color: '#457086',
												  textAlign: 'left',
												  border: {
													 width: 1,
													 radius: 5,
													 color: '#cae2ee'
												
												  },
                                        position: {
										//	target: 'mouse',
													adjust: {
														mouse: false,
														screen: true
												},
										corner: {
													tooltip: 'top',
													target: 'bottom'
                                                }
                                        }

                                        }
                                }
                        );
                }
        );
        $('.nice_tooltip').attr('title', '');
});
