$('document').ready(function() {
	$('#sendToFriendA').click(function() {
		$('#sendToFriendDiv').slideToggle();
		return false;
	});
	
	$('#textSmall, #textLarge').hover(
		function() {
			$(this).css('cursor','pointer');
		},
		function() {
			$(this).css('cursor','default');
		}
	);

	$('#textSmall').click(function(){
		var currentSize = $('#listingBox p').css('font-size');
		currentSize = parseInt(currentSize);
		currentSize = currentSize - 2;
		currentSize = currentSize + 'px';
		
		$('#listingBox p, div.asset-body').css('font-size',currentSize);
	});
	
	$('#textLarge').click(function(){
		var currentSize = $('#listingBox p').css('font-size');
		currentSize = parseInt(currentSize);
		currentSize = currentSize + 2;
		currentSize = currentSize + 'px';
		
		$('#listingBox p, div.asset-body').css('font-size',currentSize);
	});
	
	$('div.asset-body form.mt-enclosure-image').css('float','left');
});