/*
GEN4 PTC SCRIPT, A copyrighted trademark of PTCPay.com 2007-2009.

 "GeN4", "PTCPay" are a copyrighted service of PTCPay.com. All other respective trademarks remain a respectable licensed product of it's original creator.

 This file is a partial script from the GeN4 PTC script. Do not copy any part of this script.

http://www.ptcpay.com/
*/

$(document).ready(function() {
	$(".cashouts .mid div").hover(function() {
		$(this).css("background", "url(themes/GeN4/images/cashout_over.jpg) repeat-x 0 -3px");
		if($(this).attr('class') == "first") $(".cashouts .left").css("background", "url(themes/GeN4/images/cashout_leftO.jpg) no-repeat");
		if($(this).attr('class') == "last") $(".cashouts .right").css("background", "url(themes/GeN4/images/cashout_rightO.jpg) no-repeat");
	}, function() {
		$(this).css("background", "");
		if($(this).attr('class') == "first") $(".cashouts .left").css("background", "url(themes/GeN4/images/cashout_left.jpg) no-repeat");
		if($(this).attr('class') == "last") $(".cashouts .right").css("background", "url(themes/GeN4/images/cashout_right.jpg) no-repeat");
	});
});