﻿$(document).ready(function(){
    $('div.moveMe div').focus(function(e) {
		var itemID = this.id + "Info";
        $("#Info").html($("#"+itemID).html());
	});
    $('div.moveMe').roundabout({
         childSelector: 'div.moveable',
         minScale: 0.1,
         btnNext: '#prevSlide',
         btnPrev: '#nextSlide'

    });
    $(".Button").button({
        icons: {primary: 'ui-icon-carat-1-e', secondary: 'ui-icon-carat-1-e'}
    });
});	

