$.fn.unwrap = function(expr) {
  return this.each(function(){
     $(this).parents(expr).eq(0).after(this).remove();
  });
};

$(function(){
	
	if($('#minigalerie').length > 0) {
		$('#minigalerie').jcarousel();
	}
	/*
	if($('#servicii').length){
		$('#servicii li div').hide();
		$('#servicii li:first-child div').show();
		$('#servicii .catch').click(function(){		
			if($(this).parent().find('div').is(':hidden')){
				$(this).parent().parent().find('div').hide('slide');
				$(this).parent().find('div').show("slide");
			}
			else $(this).parent().find('div').hide('slide');
		});
	}
	*/
	$('input[type=text]').each(function(){
		val=this.value;
		$(this).focus(function(){
			this.value='';
		});
		$(this).blur(function(){
			this.value=val;
		});
	});
	
	if ($.browser.msie) {
		$('hr').wrap('<div class="dunga"></div>');
	}
	
	$('#date_contact span.locatie').hover(function(){
		if($(this).is(':first-child')) {
				$('#harta').attr('src','img/harta_lazar.jpg');
		}
		else	$('#harta').attr('src','img/harta_rebreanu.jpg');
		$(this).addClass('hover')
		
	}, function(){
		$(this).removeClass('hover')
	});
	
	$('.pag_contact').parent().css({
		position: 'relative',
		top: '-15px'
	});
	
});
