  $(document).ready(function() {
  	// foto
  	$("#text a > img").css('float','right');
    $("#text a > img").parents("a").addClass("thickbox").attr('rel','gal');      
    
    
    // archive search
    $("#form").submit(function(){

      // year
      var formDate = '';
      formDate = '/date/'+ $("#year").val();

      formDate = formDate + $("#month").val();


     var fullPage=thisPage+formDate;  
     location.href = fullPage;
     return false;   

   
    });
    
    
    
  });
  