/*
 * jQuery Hover Animation Text on Box
 * Author: Gupse İnternet Teknolojileri (gupse.net)
 * Data: 2010-06-17
 */
$(document).ready(function() {
	$('.boxtext').hide();
	$('.boxtitle').show();
	$('.single').hover(function() {
		$(this).children('.boxtext').slideDown('slow');
		$(this).children('.boxtitle').toggle('slow');
	},
	function() {
		$(this).children('.boxtext').slideUp('slow');
		$(this).children('.boxtitle').toggle('slow');
	});
});
