// jquery css

$(function(){
	$( 'div' ).css({
		'font-size' : '13px'
	});

	$( 'input[type=text], input[type=password]' ).css({
		'border' : '1px solid #4096ee',
		'text-align' : 'left',
		'padding' : '3px 5px 3px 5px',
		'color' : '#535353'
	}).focus(function(){
		$( this ).css({
			'background-color' : 'yellow'
		});
	}).blur(function(){
		$( this ).css({
			'background-color' : '#fff'
		});
	});

	$( 'a' ).css({
		'text-decoration' : 'none',
		'color' : '#555'
	}).hover(function(){
		$( this ).css({
			'color' : '#4096ee'
		});	
	}).mouseout(function(){
		$( this ).css({
			'text-decoration' : 'none',
			'color' : '#555'
		});
	});
	
	$( 'select' ).css({
		'color' : '#535353'
	});

	$( 'input[type=submit], input[type=reset], input[type=button]' ).css({
		'border' : '2px solid #a3a3a3',
		'padding' : '1px 4px 1px 4px',
		'font-weight' : 'bold',
		'color' : '#000',
		'background-color' : '#f3f3f3',
		'cursor' : 'pointer',
		'border-style' : 'outset'
	}).mouseover(function(){
		$( this ).css({
			'border-style' : 'groove'
		});
	}).mouseout(function(){
		$( this ).css({
			'background-color' : '#f3f3f3',
			'border-style' : 'outset'
		});
	});

	$( 'textarea' ).css({
		'border' : '1px solid #4096ee',
		'padding' : '5px 5px 5px 5px',
		'color' : '#535353'
	});
});

