$(document).ready(function() {

	// btn reply css hack
	$('a.comment-reply-link').addClass('btn_reply');
	$('.btn_reply').css('text-indent','9000px');
	
	// footer hover event
	$('img.banks_logos').hover(
		  function () {
		  	var img = $(this).attr('src');
		  	img = img.replace('.jpg','_color.jpg');
		  	$(this).attr('src', img);
		  }, 
		  function () {
  		  	var img = $(this).attr('src');
		  	img = img.replace('_color.jpg','.jpg');
		  	$(this).attr('src', img);
		  }
  	);
  	
  	$('#disqus_thread').attr('href','#comments');
});
