 $(document).ready(function() {
	
	$(".icon-box").hover(function() {
		$(this).toggleClass("box-long");
		
	});
	
	$('.slideshow .gallery img').unwrap().unwrap().unwrap();
	$('.slideshow .gallery br').remove();
    $('.slideshow .gallery').cycle({
		fx: 'scrollRight', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 400, 
		timeout:4000
	});
	
	$('a[href$=".jpg"],a[href$=".png"],a[href$=".gif"]').attr('rel','lightbox[web]').prettyPhoto();
	
	$( "#dialog" ).dialog({
        resizable: false,
        modal: true,
		width: 520
		});
		function hide_popup(){
      $(".ui-icon.ui-icon-closethick").click();
		};
		window.setTimeout( hide_popup, 5000 );


	
});

