///////////////////////////// Window Onload///////////////////////////////

/*-------------------------- Auto Button ----------------------------*/
// Auto Button Rollovers for images with ".autobtn" class
var imgText;
$(".autobtn").each(function() {
	imgText = $(this).html();
	$(this).html("");
	$(this).append("<span class=\"btn-left\"></span>");
	$(this).append("<span class=\"btn-mid bold white large\">" + imgText + "</span>");
	$(this).append("<span class=\"btn-right\"></span>");
});

$(".autobtn").mouseover(function() {
	$(this).children(".btn-left").css("background-image","url(/images/btn_leftcap_hover.png)");
	$(this).children(".btn-mid").css("background-image","url(/images/btn_bg_hover.png)");
	$(this).children(".btn-right").css("background-image","url(/images/btn_rightcap_hover.png)");
});

$(".autobtn").mouseout(function() {
	$(this).children(".btn-left").css("background-image","url(/images/btn_leftcap.png)");
	$(this).children(".btn-mid").css("background-image","url(/images/btn_bg.png)");
	$(this).children(".btn-right").css("background-image","url(/images/btn_rightcap.png)");
});

$(".autobtn-thin").each(function() {
	imgText = $(this).html();
	$(this).html("");
	$(this).append("<span class=\"btn-left\"></span>");
	$(this).append("<span class=\"btn-mid bold white large\">" + imgText + "</span>");
	$(this).append("<span class=\"btn-right\"></span>");
});

$(".autobtn-thin").mouseover(function() {
	$(this).children(".btn-left").css("background-image","url(/images/btn_leftcap_thin_hover.png)");
	$(this).children(".btn-mid").css("background-image","url(/images/btn_bg_thin_hover.png)");
	$(this).children(".btn-right").css("background-image","url(/images/btn_rightcap_thin_hover.png)");
});

$(".autobtn-thin").mouseout(function() {
	$(this).children(".btn-left").css("background-image","url(/images/btn_leftcap_thin.png)");
	$(this).children(".btn-mid").css("background-image","url(/images/btn_bg_thin.png)");
	$(this).children(".btn-right").css("background-image","url(/images/btn_rightcap_thin.png)");
});

//$.preloadImages("/images/btn_bg_hover.png","/images/btn_leftcap_hover.png", "/images/btn_leftcap_wide_hover.png", "/images/btn_rightcap_hover.png", "/images/btn_rightcap_wide_hover.png", "/images/btn_leftcap_thin_hover.png", "/images/btn_bg_thin_hover.png", "/images/btn_rightcap_thin_hover.png");
// end Auto Button code
	
// END Window Onload