$(document).ready(function(){
	
	// Bigsubs
	$('.navi-links-left-entry').bigsubs({
		tweak: {
			left: 21,
			top: 23
		}
	});
	
	$('.bigsub').mouseover(function(){
		var name = $(this).attr('id').replace('#', '');
		
		if(window[name + '_timer']){
			clearTimeout(window[name + '_timer']);
		}
		$(this).clearQueue();
		$(this).fadeIn('fast');
	});
	
	$('.bigsub').mouseout(function(){
		var name = $(this).attr('id').replace('#', '');

		window[name + '_timer'] = setTimeout(function(){$('#' + name).fadeOut('fast');}, 100);
	});
});


function toggleForm(id) {
	var emt = $('#' + id);
	emt.find('.refUrl').val(window.location.toString());
	emt.fadeToggle('fast');
}
