$(function(){
	if (typeof $().fancybox == 'function') {
		$('a[rel="gallery"]').fancybox();
	}
	if (typeof $().accordion == 'function') {
		$( '.accordion' ).accordion({
			//header: '.opener',
			header: '.title'
		})
	}
	if (typeof $().tabs == 'function') {
		$( '.tabset' ).tabs()
	}
	
	$('input.erize').each(function(){
		var _val = $(this).val();
		$(this).focus(function(){
			if ($(this).val() == _val) {
				$(this).val('');
			}
		}).blur(function(){
			if ($(this).val() == '') {
				$(this).val(_val);
			}
		});
	});
	
});
