$(function() {       
        //track appstore exits
        $("a#appstore").click(function(){
            if (pageTracker) {
                pageTracker._trackEvent('Appstore', ad_id);
            }
        })
        $("a.screenshot").click(function(){
/*			console.log($(this).attr("id"), "#phone img[src*='"+$(this).attr("id")+"'")*/
			$("#phone .on").fadeOut("slow", function(){
				$(this).removeClass("on")
			})
/*			$("#phone .on")*/
			$("#phone img[src*='"+$(this).attr("id")+"']").fadeIn("slow", function(){
				$(this).addClass("on")
			})
/*            name = $(this).css("background").split("_sm")*/
/*            console.log(name)*/
        })
    }
)