// common javascript functions

$(document).ready(function() {

	// fix IE 6 background image caching problem
	if ($.browser.msie) {
		try {
			document.execCommand("BackgroundImageCache", false, true); 
		} catch(err) {}
	}

});