$(function(){
	/** FANCYBOX */
	$(".gallery a").attr('rel', 'gallery');
	$(".gallery a").fancybox();
	$('a[href*=".jpg"]').fancybox();
	$('.iframe').fancybox({
		'type': 'iframe',
		'width': 380,
		'height': 450,
		'autoScale': false
	});
	
	/** MENU */
	$(".wrap-menu ul li").hover(
		function() {
			$(this).addClass("active");
			$(this).find('ul').stop(false, true).slideDown();
		},
		function() {
			$(this).removeClass("active");        
			$(this).find('ul').stop(false, true).slideUp('fast');
		}
	);
	
	/** TABS */
	$(".tabs").tabs();
	
	/** BXSLIDER */
	$('#twitter_update_list').bxSlider({
		mode: 'vertical',
		controls: false,
		auto: true,
		pause: 10000
	});
	
	/** SEARCH */
	$('.searchbox_input').focus(function(){
		$(this).val(''); 
	});
});
