$(document).ready(function(){

	$('ol#news ').cycle({ 
		fx: 'fade',
		prev: '#previous',
		next: '#next',
		speed : 3000
	});
	$('div#app-image div.images').cycle({ 
		fx: 'fade',
		speed : 3000
	});
	$(".controls a").click(function () { 
      $('ol#news').cycle('pause');
    });
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
				theme: 'light_rounded' /* light_rounded / dark_rounded / light_square / dark_square */
			});
});