///////////////////////////////////////////////////
//                                               //
//				  slideme2! v 1.0                //
//			hossein dehbashi (Arad itc.)         //
//	      	   hosseind600@gmail.com             //
//               http://mypress.ir               //
///////////////////////////////////////////////////	
	function display(){
	
		$('div.image').eq('0').fadeIn('fast');
		show_text('0');
	
	}
	function show_text(item){
		var title =$('div.image img').eq(item).attr('title');
		$('#show_text').html(title).fadeIn('fast');
	
	}
	var st = 1
	function change(items){
	
		var be = st-1
		var bf = items;
		if(st == 0) {
			$('div.image').eq(bf).fadeOut('fast');
			$('#show_text').fadeOut('fast');
			$('div.image').eq(st).fadeIn('fast');
		} else {
		
			$('div.image').eq(be).fadeOut('fast');
			$('#show_text').fadeOut('fast');
			$('div.image').eq(st).fadeIn('fast');
		}
		show_text(st);
		st++;
		var en = items+1;
		if(st==en) st=0;

	}

	$(document).ready(function() {
		display();
		var items = $('div.image:hidden').length;	

		inter(items);
	
	});
	
		
	function next_image(items){
		
		change(items);		
		// slide to next image
		
	}
	
	function inter(items){
				setInterval("next_image("+items+")", 5000);
	}
