// AdInit Initialization
// Atelier Ink, 2011

$(document).ready(function() {	
$("#adarrow").rotate(270);
$("#ad").hover(
function() {
	$('#ad').animate({width: '98%'});
if(window.outerWidth<1024){
	$('#ad span').replaceWith("<span id='message' class='whitelinks' style='font-size:0.8em; text-align:center'>A.J. Lester &amp Associates is also the creator of It's Done! - a popular iPhone app. Click to visit It's Done! website <img src='images/structure/collapse.png' id='adarrow' alt='collapse' style='height:10px;margin-top:5px;'/></span>");	$("#adarrow").rotate({animateTo:90});
}
else{
	$('#ad span').replaceWith("<span id='message' class='whitelinks' style='font-size:0.8em; text-align:center'>A.J. Lester &amp Associates is also the creator of It's Done! - a popular iPhone app. Click to visit It's Done! website for more details <img src='images/structure/collapse.png' id='adarrow' alt='collapse' style='height:10px;margin-top:5px;'/></span>");	$("#adarrow").rotate({animateTo:90});
}
}
,
function() {
	if(window.outerWidth<1024){
	$('#ad').animate({width: '25%'});}
	else {		
	$('#ad').animate({width: '16%'});
	};
	
	$('#ad span').replaceWith("<span id='message' class='whitelinks' style='font-size:0.8em; text-align:center'>It&prime;s Done! iPhone App <img src='images/structure/collapse.png' id='adarrow' alt='collapse' style='height:10px;margin-top:5px;'/></span>");
$("#adarrow").rotate({animateTo:270});
});

});
