if(typeof jQuery == 'function') {
	$(document).ready(function(){
		$(".cmsbutton").hover(
			function(e){
				if (this.tagName=="INPUT" || this.tagName=="BUTTON") {
					this.className = "cmsbuttonhover";
				}
			},
			function(e){
				if (this.tagName=="INPUT" || this.tagName=="BUTTON") {
					this.className = "cmsbutton";
				}
			});

		$(".cmsbutton").focus(function () {
			if (this.tagName=="INPUT" || this.tagName=="BUTTON") {
				this.className = "cmsbuttonfocus";
			}
		});

		$(".cmsbutton").blur(function () {
			if (this.tagName=="INPUT" || this.tagName=="BUTTON") {
				this.className = "cmsbutton";
			}
		});
	});
}