$(document).ready(function(){
			
				$('#gallery .preview a').click(function(){
				$('#gallery .for_big').css('backgroundImage',$(this).attr('rel'));					
					return false;
				});
				
				$('#dalee').live("click", function(){
												   
					$(this).parent(".preview").hide();
					$(this).parent(".preview").next().show()					   
										   
				});
				
				
				
				$('.preview:last #dalee').live("click", function(){
												   
					$(this).parent(".preview").hide();
					$(".preview:first").show()					   
										   
				});
			});



