function tempStart()
{
	$('.mov').appendTo('body');
	$(document).mousemove(function(e){
								   
        $(".mov").css({
            top: (e.pageY + 15) + "px",
            left: (e.pageX + 15) + "px"
        });
		if (( parseInt($(".mov").height()) + parseInt(e.pageY) - parseInt($(window).scrollTop())) >= $(window).height())
		{
			$(".mov").css({ top:($(window).height() + parseInt($(window).scrollTop()) - $(".mov").height() - 100) + 'px',left: (e.pageX + 15) + "px" });			
		}
		
		if (( parseInt($(".mov").width()) + parseInt(e.pageX) - parseInt($(window).scrollLeft())) >= $(window).width())
		{
			// $(".mov").css({ left: ( $(window).width() - 320) + "px" });		
			$(".mov").css({ left: ( e.pageX - parseInt($(".mov").width()) - 15 ) + "px" });	
		}
    });
	$(".mov").hover(function() { $(this).show(); },function() { $(this).hide(); });
	$('.fmouseover').hover(function() { $('#f_'+$(this).attr('urunno')).show(); },function() { $('#f_'+$(this).attr('urunno')).hide(); });
	
	$('.flower1 .sepet td').attr('valign','middle');
	$('.flower1 .sepet tr').each(function() { 
		if ($(this).find('.sepetUrunDetay').html() != null) {
			$(this).find('td:first').html('<table><tr><td width=40><b>'+$(this).find('td:first').html()+'.</b></td><td><img src="'+$(this).find('.sepetUrunDetay img').attr('src').replace(/=200/i,'=100') + '" /></td></tr></table>');	
			$(this).find('td:first img').css({'border':'2px solid #ccc'});
		}
	});
}

$(document).ready(function() {
	$("#sepetGoster").css({'left':(($('#content').position().left) + 10) + 'px','top':$('#imgSepetGoster').height() + 145 + 'px'});
});


