// JavaScript Document

$(document).ready(function(){
						   
							
	// button rollover effects							
	$('.btn').mouseover(function(){
		$(this).css({'background-position': '0 -27px'});
	});	
	$('.btn').mousedown(function(){
		$(this).css({'background-position': '0 -54px'});
	});	
	$('.btn').mouseup(function(){
		$(this).css({'background-position': '0 -27px'});
	});	
	$('.btn').mouseout(function(){
		$(this).css({'background-position': '0 0'});
	});
	

});