$(document).ready(function() {
			
	// All Input Fields Style
	$('.input').focus(function() {
		$(this).css('border', '1px solid #226ea7');
    });
    $('.input').blur(function() {
		$(this).css('border', '1px solid #7aaacd');
    });
	
	
	$('#s_button').mouseover(function() {
		$(this).css('background-position', 'left center');
    });
    $('#s_button').mouseout(function() {
		$(this).css('background-position', 'left top');
    });
    $('#s_button').mousedown(function() {
		$(this).css('background-position', 'left bottom');
    });
    
    $('#c_button').mouseover(function() {
		$(this).css('background-position', 'left center');
    });
    $('#c_button').mouseout(function() {
		$(this).css('background-position', 'left top');
    });
    $('#c_button').mousedown(function() {
		$(this).css('background-position', 'left bottom');
    });
    $('#c_button').click(function() {
		self.parent.tb_remove();
    });
	
});