$(document).ready(function() {
	var DEFAULT_ANIMATION_DURATION = 500;
	
	var effect_items = $('#logo, .toolbar .left a, .hover-effect, .wrapper .content .fixed-width .latest-cars .car-block a img, .car-image-enter img, .previousPage a, .nextPage a');
	effect_items.hover(
		function() {
			$(this).stop().animate({
				opacity: 0.5
			}, DEFAULT_ANIMATION_DURATION);
		},
		function() {
			$(this).stop().animate({
				opacity: 1
			}, DEFAULT_ANIMATION_DURATION);	
		}
	);
	
	var links = $('.toolbar .right a, .wrapper .footer .fixed-width ul a, .advancedSearch, .wrapper .content .fixed-width .latest-cars .car-block a, .hover-border');
	links.hover(
		function() {
			$(this).stop().animate({
				borderBottomColor:"#666666"
			}, DEFAULT_ANIMATION_DURATION);
		},
		function() {
			$(this).stop().animate({
				borderBottomColor:"#F4F4F4"
			}, DEFAULT_ANIMATION_DURATION);	
		}
	);
	
	var focus_items = $('#registo input[type="text"], #registo input[type="password"], .field-input, .field-effect-container input, .field-effect-container textarea');
	focus_items.focusin(
		function() {
			$(this).stop().animate({
				borderBottomColor:"#999",
				borderTopColor:"#999",
				borderLeftColor:"#999",
				borderRightColor:"#999"
			}, DEFAULT_ANIMATION_DURATION);
		}
	);
	focus_items.focusout(
		function() {
			$(this).stop().animate({
				borderBottomColor:"#FFF",
				borderTopColor:"#FFF",
				borderLeftColor:"#DCDCDC",
				borderRightColor:"#DCDCDC"
			}, DEFAULT_ANIMATION_DURATION);	
		}
	);
	
	$("SELECT").selectBox();
});
