$(document).ready(function() {
			
			//styling select box
			$('#pick-city, #pick-service, #pick-question, #pick-service-concerned').selectbox();


		//animate homepage pictures
		$('#boxes .itemB a').hover(
			function(){
				$(this).children('span').stop().animate({'background-position': '20px 185px', 'padding-left' : '40px'})
				
		},
			function(){
				$(this).children('span').stop().animate({'background-position': '-20px 185px', 'padding-left' : '20px'})
				
		});


		//animate homepage blue menu
		$('#texto ul li a').hover(
			function(){
				$('#texto ul li a').stop().animate({'width': '202px'});
				$(this).stop().animate({'width': '242px'});
		},
			function(){
				$('#texto ul li a').stop().animate({'width': '212px'});

		});


		//styling order checked PLUS
		$('.fakecheck').click(
			function(){
				($(this).hasClass('fakechecked')) ? $(this).removeClass('fakechecked') : $(this).addClass('fakechecked');
				$(this.hash).trigger("click");
				return false;
		});
	
	$('.bigCheckedBox').css({'display':'none'});
	$('.fakecheck').css({'display':'block'});	
	$('#boxes .itemB a').removeClass('bj');
	
	//editing input 'setPhone'
	$('input.setPhone').focus(function() {
		if (this.value == this.defaultValue){
		this.value = '';
		}
		if(this.value != this.defaultValue){
		this.select();
		}
	});
	
	$('input.setPhone').blur(function() {
		if ($.trim(this.value) == ''){
		this.value = (this.defaultValue ? this.defaultValue : '');
		}
	});

		
});
