
jQuery(document).ready(function($) {
	
		
		$(".vote").fancybox({
		'overlayShow'	: false,
		'width' : '70%',
		'height' : '85%',
		'autoScale' : false,
		'transitionIn' : 'none',
		'transitionOut' : 'none',
		'type' : 'iframe'
		});
		
		$(".right_textbox li").mouseenter(			
			function(){
					
				$(this).find('.description').fadeIn();
			}
		);
		
		$(".right_textbox li").mouseleave(
			function(){
				$(this).find('.description').hide();
			}
		);
		
		$("#tinygallery li").mouseenter(			
			function(){
					
				$(this).find('.description').fadeIn();
			}
		);
		
		$("#tinygallery li").mouseleave(
			function(){
				$(this).find('.description').hide();
			}
		);
		 
});


