// JavaScript Document
jQuery(document).ready(
	function()
	{
		jQuery('.sticky-post').bind('mouseenter', 
						function()
						{
							jQuery(this).children('.post-short-box').addClass('hidden-box');
							jQuery(this).children('.post-large-box').removeClass('hidden-box');
						});	
		jQuery('.sticky-post').bind('mouseleave', 
						function()
						{
							jQuery(this).children('.post-large-box').addClass('hidden-box');
							jQuery(this).children('.post-short-box').removeClass('hidden-box');
						});	
	});
