﻿$(function() {
    $('.button_blue_link a').mouseover(function(){
    $(this).css('background', 'url(images/button_blue_right_hover.png) no-repeat right top')
    $(this.parentNode).css('background', 'url(images/button_blue_left_hover.png) no-repeat')
    });
   
    $('.button_blue_link a').mouseout(function(){
    $(this).css('background', 'url(images/button_blue_right.png) no-repeat right top')   
    $(this.parentNode).css('background', 'url(images/button_blue_left.png) no-repeat left top')
    });
	
    $('.button_green_link a').mouseover(function(){
    $(this).css('background', 'url(images/button_green_right_hover.png) no-repeat right top')
    $(this.parentNode).css('background', 'url(images/button_green_left_hover.png) no-repeat')
    });
   
    $('.button_green_link a').mouseout(function(){
    $(this).css('background', 'url(images/button_green_right.png) no-repeat right top')   
    $(this.parentNode).css('background', 'url(images/button_green_left.png) no-repeat left top')
    });
});

$(function() {
	$('#comments table table').last().css('border', 'none')
	$('.news_listing li').last().css({'border' : 'none', 'padding-bottom': '30px'})
});
