$(document).ready(function(){
	
	
	$('#nav a[href="#"]').click(function(e){
		e.preventDefault();
	}).each(function(i){
		$(this).attr('href', 'javascript://');
	});
	
	$('#nav a').attr('title', '');
	
	
	/**
	 * gallery thumbs title effect
	 */
	thumbs = $('a.ui_thumb').attr('title', '');
	thumbs.find('.title').css({bottom:-100});
	thumbs.mouseenter(function() {
		$(this).find('.title').stop().animate({bottom:5},100);
	}).mouseleave(function(){
		$(this).find('.title').stop().animate({bottom:-100}, 1500);
	});
	
	/**
	 * external links
	 * 
	 */
	$("a[rel='external']").attr('target', '_blank');
	
	
	
	$('#contact_form').find('input[type=text], textarea').focus(function(){
		$(this).parent().find(".ui_error").slideUp();
	});
	

});


